]> granicus.if.org Git - curl/commitdiff
fix bad free() that caused segfault
authorDaniel Stenberg <daniel@haxx.se>
Fri, 11 Oct 2002 17:44:36 +0000 (17:44 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 11 Oct 2002 17:44:36 +0000 (17:44 +0000)
src/main.c

index 06fcbe5b8b0cd204d5b38125d1f547d6b7e34ed0..bde43acea7a3edaffc817f87e5ddef9a5852c51a 100644 (file)
@@ -1774,7 +1774,7 @@ static int parseconfig(const char *filename,
       case '\n':
       case '*':
       case '\0':
-        free(line);
+        free(aline);
         continue;
       }