1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Fix memory leak in stdlib/isomac.c

This commit is contained in:
Allan McRae
2013-09-09 22:52:58 +10:00
parent 3932737df1
commit 34829bc28f
3 changed files with 6 additions and 1 deletions

View File

@@ -263,6 +263,7 @@ get_null_defines (void)
if (system (command))
{
puts ("system() returned nonzero");
free (command);
return NULL;
}
free (command);