Module: kamailio Branch: master Commit: 0ba972170258bfc6e732ccd5b030fe70cda098df URL: https://github.com/kamailio/kamailio/commit/0ba972170258bfc6e732ccd5b030fe70cda098df
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2026-06-25T11:11:36+02:00 exec: use proper value in fixup free --- Modified: src/modules/exec/exec_mod.c --- Diff: https://github.com/kamailio/kamailio/commit/0ba972170258bfc6e732ccd5b030fe70cda098df.diff Patch: https://github.com/kamailio/kamailio/commit/0ba972170258bfc6e732ccd5b030fe70cda098df.patch --- diff --git a/src/modules/exec/exec_mod.c b/src/modules/exec/exec_mod.c index b5cc6a7851c..e086baeaabf 100644 --- a/src/modules/exec/exec_mod.c +++ b/src/modules/exec/exec_mod.c @@ -271,7 +271,7 @@ static int exec_avp_fixup_free(void **param, int param_no) if(param_no == 1) { return fixup_free_spve_null(param, 1); } else if(param_no == 2) { - free_pvname_list((pvname_list_t *)param); + free_pvname_list((pvname_list_t *)(*param)); } return 0; } _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
