1
1

torture: Fix a resource leak on error.

Этот коммит содержится в:
Andreas Schneider 2013-06-13 15:43:50 +02:00
родитель 01493b8d47
Коммит a38c56370c

Просмотреть файл

@ -110,6 +110,7 @@ int torture_rmdirs(const char *path) {
len = strlen(path) + strlen(dp->d_name) + 2;
fname = malloc(len);
if (fname == NULL) {
closedir(d);
return -1;
}
snprintf(fname, len, "%s/%s", path, dp->d_name);