Module: sip-router Branch: master Commit: 5acf191aee9d10b26b730df20d622e527c656db3 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5acf191aee9d10b26b730df20d622e527c656db3
Author: Ovidiu Sas <[email protected]> Committer: Ovidiu Sas <[email protected]> Date: Wed Sep 18 17:10:10 2013 -0400 xcap_client: fix what it seems to be an old copy/paste error --- modules/xcap_client/xcap_callbacks.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/xcap_client/xcap_callbacks.c b/modules/xcap_client/xcap_callbacks.c index 58c1fc0..93d32ff 100644 --- a/modules/xcap_client/xcap_callbacks.c +++ b/modules/xcap_client/xcap_callbacks.c @@ -78,6 +78,6 @@ void destroy_xcapcb_list(void) { prev_xcb= xcb; xcb= xcb->next; - shm_free(xcb); + shm_free(prev_xcb); } } _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
