aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/epan/mate
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/epan/mate')
-rw-r--r--plugins/epan/mate/mate_grammar.lemon2
-rw-r--r--plugins/epan/mate/mate_parser.l2
-rw-r--r--plugins/epan/mate/mate_runtime.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/epan/mate/mate_grammar.lemon b/plugins/epan/mate/mate_grammar.lemon
index c041d93ffb..ba020c13d6 100644
--- a/plugins/epan/mate/mate_grammar.lemon
+++ b/plugins/epan/mate/mate_grammar.lemon
@@ -436,7 +436,7 @@ pdu_decl ::=
g_ptr_array_add(transport_stack,g_ptr_array_remove_index(Stack,i));
}
- g_ptr_array_free(Stack,FALSE);
+ g_ptr_array_free(Stack, TRUE);
cfg->transport_ranges = transport_stack;
cfg->payload_ranges = Payload;
diff --git a/plugins/epan/mate/mate_parser.l b/plugins/epan/mate/mate_parser.l
index 2b61c9d069..0c140f2cb8 100644
--- a/plugins/epan/mate/mate_parser.l
+++ b/plugins/epan/mate/mate_parser.l
@@ -403,7 +403,7 @@ extern gboolean mate_load_config(const gchar* filename, mate_config* mc) {
fclose(in);
g_ptr_array_foreach(mc->config_stack, ptr_array_free, NULL);
- g_ptr_array_free(mc->config_stack, FALSE);
+ g_ptr_array_free(mc->config_stack, TRUE);
return status;
}
diff --git a/plugins/epan/mate/mate_runtime.c b/plugins/epan/mate/mate_runtime.c
index 293f4ce6f7..2bb31eb941 100644
--- a/plugins/epan/mate/mate_runtime.c
+++ b/plugins/epan/mate/mate_runtime.c
@@ -78,7 +78,7 @@ static gboolean destroy_mate_gogs(gpointer k _U_, gpointer v, gpointer p _U_) {
if (gog->gog_keys) {
gog_remove_keys(gog);
- g_ptr_array_free(gog->gog_keys,FALSE);
+ g_ptr_array_free(gog->gog_keys, TRUE);
}
g_slice_free(mate_max_size,(mate_max_size*)gog);