diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-11-19 19:21:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-11-19 19:21:06 +0000 |
commit | 84e462d5f644a21923ec812ad2a47ae52ffa7cdf (patch) | |
tree | add6e1f79de770fb7d1f25ec20f98f4c14ebc993 | |
parent | 508466a1759de36f362f44c2c55703e41bc562b8 (diff) |
Lars M Gustafsson showed us that the free(urlbuffer) was totally unnecessary
and plain wrong.
-rw-r--r-- | src/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 0cce58ea1..f419e0ac5 100644 --- a/src/main.c +++ b/src/main.c @@ -2322,8 +2322,6 @@ operate(struct Configurable *config, int argc, char *argv[]) if(config->headerfile && !headerfilep && heads.stream) fclose(heads.stream); - if(urlbuffer) - free(urlbuffer); if (outfile && !strequal(outfile, "-") && outs.stream) fclose(outs.stream); |