aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-31 11:31:40 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-31 11:31:40 +0000
commit0b48b2f47f55f04d856ccd34f84d185d6701c95f (patch)
treeaf9124f7d76cd79895a8f6d45054e0d7acbdccb5
parent2099e3166b6058889a324b0daff3ee9c11ec15ea (diff)
Fix bug 3489:
Array overrun at copy of filter expression on GTK1 build. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28538 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--file.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/file.c b/file.c
index f63cd3ee1c..43bd19e45c 100644
--- a/file.c
+++ b/file.c
@@ -1057,8 +1057,6 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
fdata->col_expr.col_expr[i] = g_strdup(cf->cinfo.col_expr.col_expr[i]);
fdata->col_expr.col_expr_val[i] = g_strdup(cf->cinfo.col_expr.col_expr_val[i]);
}
- fdata->col_expr.col_expr[i] = NULL;
- fdata->col_expr.col_expr_val[i] = NULL;
}
#endif
row = packet_list_append(cf->cinfo.col_data, fdata);