diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-11-07 17:19:57 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-11-07 17:19:57 +0000 | 
| commit | 445950aa705a7a39683753c8d415bbf707ac7eb2 (patch) | |
| tree | ad53532b2c6ff16443a1bf5abae992f995696579 | |
| parent | 8be602cdfdfa117e1f771f1a7cdf995ea4ab989b (diff) | |
do a normal free() of the homedir now
| -rw-r--r-- | src/main.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index b436ef20b..dd5363d8b 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 */      }    }  | 
