Fix a memory leak if parent directory creation failed.

This commit is contained in:
Matt Kraai 2001-08-24 19:07:31 +00:00
parent a0065d5955
commit 2a953aed38

View File

@ -49,16 +49,16 @@ int make_directory (char *path, long mode, int flags)
struct stat st;
if (stat (path, &st) < 0 && errno == ENOENT) {
int status;
char *parent = dirname (path);
mode_t mask = umask (0);
umask (mask);
if (make_directory (parent, (0777 & ~mask) | 0300,
FILEUTILS_RECUR) < 0)
return -1;
status = make_directory (parent, (0777 & ~mask) | 0300,
FILEUTILS_RECUR);
free (parent);
if (make_directory (path, mode, 0) < 0)
if (status < 0 || make_directory (path, mode, 0) < 0)
return -1;
}
}