我的代碼工作正常,直到我嘗試釋放分配的內存。我malloc
編輯files
指針,後來我用realloc
來增加大小。但是當我嘗試釋放內存時,它給了我無效的指針錯誤,不知道爲什麼。不能釋放C中的重新分配內存
char *files = malloc(1);
char *temp = strdup(argv[i]);
strcat(temp, "/");
strcat(temp, dp->d_name);
DIR *child_dir;
child_dir = opendir (temp);
if (child_dir == NULL) {
files = realloc(files, strlen(dp->d_name)+1);
strcat(files, dp->d_name);
strcat(files, "/");
} else {
struct dirent *child_dp;
while ((child_dp = readdir (child_dir)) != NULL) {
if (!strcmp(child_dp->d_name, ".")
|| !strcmp(child_dp->d_name, ".."))
continue;
files = realloc(files, strlen(child_dp->d_name) + 1);
strcat(files, child_dp->d_name);
strcat(files, "/");
}
}
close(fd[0]);
int n = write(fd[1], files, strlen(files));
free(temp); // free
free(files); // free
temp = NULL;
files = NULL;
return;
這是我得到的錯誤,
======= Backtrace: =========
/lib64/libc.so.6(+0x721af)[0x7fa2e697c1af]
/lib64/libc.so.6(+0x77706)[0x7fa2e6981706]
/lib64/libc.so.6(+0x78453)[0x7fa2e6982453]
./myfind[0x40110c]
./myfind[0x400b02]
/lib64/libc.so.6(__libc_start_main+0xf5)[0x7fa2e692a6e5]
./myfind[0x400a09]
======= Memory map: ========
注:如果我沒有釋放任何內存空間中運行相同的代碼,它工作正常。這意味着指針指向內存中的正確位置。
當你執行'strcat(temp,「/」);'時,你會導致未定義的行爲。 'temp'對於你複製的'argv [i]'字符串來說只有足夠大的空間,它沒有空間給你連接額外的字符串。 – Barmar