summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'action.c')
-rw-r--r--action.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/action.c b/action.c
index 74b4456b..bb5767cd 100644
--- a/action.c
+++ b/action.c
@@ -775,6 +775,14 @@ finalize_it:
*/
switch(pThis->eParamPassing) {
case ACT_STRING_PASSING:
+ /* nothing to do in this case */
+ /* TODO: find a better way of handling this situation, as it
+ * costs performance to delete this array each time.
+ */
+ for(i = 0 ; i < pThis->iNumTpls ; ++i) {
+ free(((uchar**)actParams)[i]);
+ ((uchar**)actParams)[i] = NULL;
+ }
break;
case ACT_ARRAY_PASSING:
cleanupDoActionParams(pThis, actParams); /* iRet ignored! */