aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-08 21:36:40 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-08 21:36:40 +0000
commit0b526d9703456afbc4349cf671aeb3bfdb782764 (patch)
tree4fcbed1870de8e0a204a074814fa9e85d4b2be49
parent933ef6e2c2bb2db338df5ef03a399ba583eed689 (diff)
start with fdata->num = -1, so we don't have an uninitialised value while doing read_filter style dissection
svn path=/trunk/; revision=15732
-rw-r--r--file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/file.c b/file.c
index 7b328b4b57..8b6619b97c 100644
--- a/file.c
+++ b/file.c
@@ -875,6 +875,7 @@ read_packet(capture_file *cf, long offset)
/* Allocate the next list entry, and add it to the list. */
fdata = g_mem_chunk_alloc(cf->plist_chunk);
+ fdata->num = -1;
fdata->next = NULL;
fdata->prev = NULL;
fdata->pfd = NULL;