diff options
author | 2014-08-21 16:46:48 +0000 | |
---|---|---|
committer | 2014-08-21 16:46:48 +0000 | |
commit | c0ef72dabe2ef0285faa990741dd7f5230c1e8a6 (patch) | |
tree | c50f0e4bc11f447e30744d701f6ab5833d766948 | |
parent | limit CGI process execution time to make REDoS attacks less effective; (diff) | |
download | wireguard-openbsd-c0ef72dabe2ef0285faa990741dd7f5230c1e8a6.tar.xz wireguard-openbsd-c0ef72dabe2ef0285faa990741dd7f5230c1e8a6.zip |
Fix double free. ok guenther@
-rw-r--r-- | usr.bin/ftp/fetch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index 8a836128504..e130895d5f7 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fetch.c,v 1.126 2014/07/14 09:26:27 jsing Exp $ */ +/* $OpenBSD: fetch.c,v 1.127 2014/08/21 16:46:48 jca Exp $ */ /* $NetBSD: fetch.c,v 1.14 1997/08/18 10:20:20 lukem Exp $ */ /*- @@ -975,7 +975,6 @@ cleanup_url_get: ressl_free(ssl); } free(full_host); - free(credentials); #endif /* !SMALL */ if (fin != NULL) fclose(fin); |