mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-29 15:36:13 +00:00
Add missing debug info for ao2_link for use with REF_DEBUG in ao2 callback.
(closes issue #18758) Reported by: rgagnon Patches: branch-1.8-r306540-astobj-fix.diff uploaded by rgagnon (license 1202) trunk-r306540-astobj-fix.diff uploaded by rgagnon (license 1202) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@307273 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -693,7 +693,11 @@ static void *internal_ao2_callback(struct ao2_container *c,
|
|||||||
* link the object into the container that will hold the results.
|
* link the object into the container that will hold the results.
|
||||||
*/
|
*/
|
||||||
if (ret && (multi_container != NULL)) {
|
if (ret && (multi_container != NULL)) {
|
||||||
__ao2_link(multi_container, ret);
|
if (tag) {
|
||||||
|
__ao2_link_debug(multi_container, ret, tag, file, line, funcname);
|
||||||
|
} else {
|
||||||
|
__ao2_link(multi_container, ret);
|
||||||
|
}
|
||||||
ret = NULL;
|
ret = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user