pod_dup(): duplicate also pieces list

This commit is contained in:
2021-11-15 11:23:37 +01:00
parent f0e1836f2f
commit a28cd5c492
5 changed files with 39 additions and 22 deletions

View File

@@ -117,7 +117,10 @@ void *pool_get(pool_t *pool)
}
pool_stats(pool);
}
return _pool_get(pool);
/* this is the effective address if the object (and also the
* pool list_head address)
*/
return _pool_get(pool);
}
#ifdef BIN_pool