mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 21:19:53 -05:00
Add comments to sl_mem_detach()
This commit is contained in:
parent
703444febd
commit
4c0e4741f7
1 changed files with 8 additions and 0 deletions
|
|
@ -78,7 +78,15 @@ sl_mem_detach(
|
|||
void *memctx
|
||||
)
|
||||
{
|
||||
/* separate from context */
|
||||
ldap_pvt_thread_pool_setkey( ctx, sl_mem_init, NULL, NULL );
|
||||
|
||||
/* The code used to try to use realloc to shrink the region.
|
||||
* This is unsafe, since realloc may return a different block
|
||||
* of memory from what was passed in, and the region contains
|
||||
* pointers that reference itself. After realloc, these pointers
|
||||
* are invalid, and crashes result.
|
||||
*/
|
||||
}
|
||||
|
||||
void *
|
||||
|
|
|
|||
Loading…
Reference in a new issue