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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user