From: Daniel Stenberg Date: Fri, 7 Nov 2003 17:19:57 +0000 (+0000) Subject: do a normal free() of the homedir now X-Git-Tag: curl-7_11_0~255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=445950aa705a7a39683753c8d415bbf707ac7eb2;p=thirdparty%2Fcurl.git do a normal free() of the homedir now --- diff --git a/src/main.c b/src/main.c index b436ef20b2..dd5363d8b5 100644 --- a/src/main.c +++ b/src/main.c @@ -2064,7 +2064,7 @@ static int parseconfig(const char *filename, filename = filebuffer; } - curl_free(home); /* we've used it, now free it */ + free(home); /* we've used it, now free it */ } }