Deleted Added
full compact
25a26
> size_t size;
29,31c30,33
< quarantine = (quarantine_t *)iallocztm(tsd, offsetof(quarantine_t, objs)
< + ((ZU(1) << lg_maxobjs) * sizeof(quarantine_obj_t)), false,
< tcache_get(tsd, true), true, NULL);
---
> size = offsetof(quarantine_t, objs) + ((ZU(1) << lg_maxobjs) *
> sizeof(quarantine_obj_t));
> quarantine = (quarantine_t *)iallocztm(tsd, size, size2index(size),
> false, tcache_get(tsd, true), true, NULL, true);
58c60
< idalloctm(tsd, quarantine, tcache_get(tsd, false), true);
---
> idalloctm(tsd, quarantine, tcache_get(tsd, false), true, true);
90c92
< idalloctm(tsd, quarantine, tcache_get(tsd, false), true);
---
> idalloctm(tsd, quarantine, tcache_get(tsd, false), true, true);
101c103
< idalloctm(tsd, obj->ptr, NULL, false);
---
> idalloctm(tsd, obj->ptr, NULL, false, true);
126c128
< idalloctm(tsd, ptr, NULL, false);
---
> idalloctm(tsd, ptr, NULL, false, true);
165c167
< idalloctm(tsd, ptr, NULL, false);
---
> idalloctm(tsd, ptr, NULL, false, true);
180c182
< idalloctm(tsd, quarantine, tcache_get(tsd, false), true);
---
> idalloctm(tsd, quarantine, tcache_get(tsd, false), true, true);