mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
Fix a bug in stringfields where it did not actually free the pools of memory.
(closes issue #15074) Reported by: pj git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@197538 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1560,7 +1560,11 @@ int __ast_string_field_init(struct ast_string_field_mgr *mgr, struct ast_string_
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (needed < 0) { /* reset all pools */
|
if (needed < 0) { /* reset all pools */
|
||||||
/* nothing to do */
|
if (*pool_head == NULL) {
|
||||||
|
ast_log(LOG_WARNING, "trying to reset empty pool\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
cur = *pool_head;
|
||||||
} else if (mgr->embedded_pool) { /* preserve the embedded pool */
|
} else if (mgr->embedded_pool) { /* preserve the embedded pool */
|
||||||
preserve = mgr->embedded_pool;
|
preserve = mgr->embedded_pool;
|
||||||
cur = *pool_head;
|
cur = *pool_head;
|
||||||
|
Reference in New Issue
Block a user