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 06fcbe5..bde43ac 100644 (file)
@@ -1774,7 +1774,7 @@ static int parseconfig(const char *filename,
       case '\n':
       case '*':
       case '\0':
-        free(line);
+        free(aline);
         continue;
       }