Module: sip-router Branch: master Commit: eba919ffd1d3f56b29d5d4b34ac043d8b690a6b8 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=eba919ff...
Author: Andrei Pelinescu-Onciul andrei@iptel.org Committer: Andrei Pelinescu-Onciul andrei@iptel.org Date: Mon Aug 16 14:13:17 2010 +0200
core: fix fixup_pvar_pvar bug
Fix typo-bug introduced in d756b6bfb: fixup_pvar_pvar() called fixup_free_pvar_all() instead of fixup_pvar_all().
Reported-by: Juha Heinanen jh tutpro com
---
mod_fix.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/mod_fix.c b/mod_fix.c index 9e02511..0ff29d9 100644 --- a/mod_fix.c +++ b/mod_fix.c @@ -317,7 +317,7 @@ int fixup_pvar_pvar(void** param, int param_no) { if (param_no > 2) return E_UNSPEC; - return fixup_free_pvar_all(param, param_no); + return fixup_pvar_all(param, param_no); }