1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 15:48:49 -05:00

fix bad free() that caused segfault

This commit is contained in:
Daniel Stenberg 2002-10-11 17:44:36 +00:00
parent 123c7b32db
commit 25c973a39e

View File

@ -1774,7 +1774,7 @@ static int parseconfig(const char *filename,
case '\n':
case '*':
case '\0':
free(line);
free(aline);
continue;
}