2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

3351. [bug] isc_mem_put and isc_mem_putanddetach didn't report

caller if either ISC_MEM_DEBUGSIZE or ISC_MEM_DEBUGCTX
                        memory debugging flags are set. [RT #30243]
This commit is contained in:
Mark Andrews
2012-07-18 10:02:32 +10:00
parent d0d892f449
commit c963ca7542
2 changed files with 6 additions and 2 deletions

View File

@@ -1197,7 +1197,7 @@ isc___mem_putanddetach(isc_mem_t **ctxp, void *ptr, size_t size FLARG) {
oldsize -= ALIGNMENT_SIZE;
INSIST(oldsize == size);
}
isc_mem_free((isc_mem_t *)ctx, ptr);
isc__mem_free((isc_mem_t *)ctx, ptr FLARG_PASS);
MCTXLOCK(ctx, &ctx->lock);
ctx->references--;
@@ -1333,7 +1333,7 @@ isc___mem_put(isc_mem_t *ctx0, void *ptr, size_t size FLARG) {
oldsize -= ALIGNMENT_SIZE;
INSIST(oldsize == size);
}
isc_mem_free((isc_mem_t *)ctx, ptr);
isc__mem_free((isc_mem_t *)ctx, ptr FLARG_PASS);
return;
}