diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2014-07-21 15:44:59 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2014-07-21 15:44:59 +0000 |
commit | e19f362e282d58d90bc6ee46eaef5362db8172f8 (patch) | |
tree | 6b6b105ac6caa77faddbd827f6ebb78c977a2217 | |
parent | 47ccc0c84fb0debeec03ff02730706e7b9c874ac (diff) |
Notes
-rw-r--r-- | lib/libc/stdlib/hcreate.c | 1 | ||||
-rw-r--r-- | sys/sys/param.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdlib/hcreate.c b/lib/libc/stdlib/hcreate.c index e8213f90b5ef3..b3be9b4dc4354 100644 --- a/lib/libc/stdlib/hcreate.c +++ b/lib/libc/stdlib/hcreate.c @@ -159,7 +159,6 @@ hdestroy_r(struct hsearch_data *head) while (!SLIST_EMPTY(&table[idx])) { ie = SLIST_FIRST(&table[idx]); SLIST_REMOVE_HEAD(&table[idx], link); - free(ie->ent.key); free(ie); } } diff --git a/sys/sys/param.h b/sys/sys/param.h index 794a1f18e752f..8920f78cb9d4e 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -58,7 +58,7 @@ * in the range 5 to 9. */ #undef __FreeBSD_version -#define __FreeBSD_version 1100027 /* Master, propagated to newvers */ +#define __FreeBSD_version 1100028 /* Master, propagated to newvers */ /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD, |