Browse Source

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
Andrei Pelinescu-Onciul 15 years ago
parent
commit
eba919ffd1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mod_fix.c

+ 1 - 1
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);
 }