projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6554a3b
)
res_sorcery_memory_cache.c: Replace inline code with function.
author
Richard Mudgett
<rmudgett@digium.com>
Thu, 1 Oct 2015 19:30:06 +0000
(14:30 -0500)
committer
Richard Mudgett
<rmudgett@digium.com>
Thu, 1 Oct 2015 22:28:24 +0000
(17:28 -0500)
Make sorcery_memory_cache_close() call remove_all_from_cache() instead of
partially inlining it.
ASTERISK-25441
Change-Id: I1aa6cb425b1a4307096f3f914d17af8ec179a74c
res/res_sorcery_memory_cache.c
patch
|
blob
|
history
diff --git
a/res/res_sorcery_memory_cache.c
b/res/res_sorcery_memory_cache.c
index
53fa3b9
..
fa142fc
100644
(file)
--- a/
res/res_sorcery_memory_cache.c
+++ b/
res/res_sorcery_memory_cache.c
@@
-1063,9
+1063,7
@@
static void sorcery_memory_cache_close(void *data)
* a prolonged period of time.
*/
ao2_wrlock(cache->objects);
- ao2_callback(cache->objects, OBJ_UNLINK | OBJ_NOLOCK | OBJ_NODATA | OBJ_MULTIPLE,
- NULL, NULL);
- AST_SCHED_DEL_UNREF(sched, cache->expire_id, ao2_ref(cache, -1));
+ remove_all_from_cache(cache);
ao2_unlock(cache->objects);
}