2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00
This commit is contained in:
Andreas Gustafsson
2001-02-09 19:08:11 +00:00
parent dd0ef1a9d3
commit 50179a15d1

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: mem.c,v 1.83 2001/02/09 19:05:22 gson Exp $ */
/* $Id: mem.c,v 1.84 2001/02/09 19:08:11 gson Exp $ */
#include <config.h>
@@ -593,8 +593,9 @@ mem_put(isc_mem_t *ctx, void *mem, size_t size) {
#endif
#if ISC_MEM_FILL
memset(mem, 0xde, size); /* Mnemonic for "dead". */
#else
UNUSED(size);
#endif
(ctx->memfree)(ctx->arg, mem);
}