diff options
author | 2003-04-08 20:56:59 +0000 | |
---|---|---|
committer | 2003-04-08 20:56:59 +0000 | |
commit | 283ed34f99adc65eaa208c8c6c2a54ec030ccc8a (patch) | |
tree | f626b5595d93e31efc8a2bf2be4279200cc87db5 | |
parent | just wate that debug altogether (diff) | |
download | wireguard-openbsd-283ed34f99adc65eaa208c8c6c2a54ec030ccc8a.tar.xz wireguard-openbsd-283ed34f99adc65eaa208c8c6c2a54ec030ccc8a.zip |
missing free(pagname); noticed by vincent
-rw-r--r-- | usr.sbin/httpd/src/lib/sdbm/sdbm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/httpd/src/lib/sdbm/sdbm.c b/usr.sbin/httpd/src/lib/sdbm/sdbm.c index 6aac7be6543..914dc6f4339 100644 --- a/usr.sbin/httpd/src/lib/sdbm/sdbm.c +++ b/usr.sbin/httpd/src/lib/sdbm/sdbm.c @@ -93,6 +93,7 @@ register int mode; db = sdbm_prep(dirname, pagname, flags, mode); free((char *) dirname); + free((char *) pagname); return db; } |