Module: sip-router Branch: master Commit: 11ea7e73f0b541c2759d89a125b69a23cecb9ba9 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=11ea7e73...
Author: Ovidiu Sas osas@voipembedded.com Committer: Ovidiu Sas osas@voipembedded.com Date: Wed Sep 18 16:57:56 2013 -0400
xcap_client: fix what it seems to be an old copy/paste error
---
modules/xcap_client/xcap_functions.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/xcap_client/xcap_functions.c b/modules/xcap_client/xcap_functions.c index 28d4d42..4c3eead 100644 --- a/modules/xcap_client/xcap_functions.c +++ b/modules/xcap_client/xcap_functions.c @@ -85,8 +85,8 @@ void xcapFreeNodeSel(xcap_node_sel_t* node) { m= n; n= n->next; - pkg_free(n->value.s); - pkg_free(n); + pkg_free(m->value.s); + pkg_free(m); }
pkg_free(node);