aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter/dfilter.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-07-07 22:22:05 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-07-07 22:22:05 +0000
commit29bb0505d5c1e778d6c55f1a71b327a9f65c5381 (patch)
treea12e92b65359abd92266263c7d586bc1d93cf458 /epan/dfilter/dfilter.c
parentbd182070d73d434c0cdc69e662f851fae277fb7a (diff)
NULL is zero on all platforms we run on.
svn path=/trunk/; revision=29003
Diffstat (limited to 'epan/dfilter/dfilter.c')
-rw-r--r--epan/dfilter/dfilter.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/dfilter/dfilter.c b/epan/dfilter/dfilter.c
index 624e231f36..b7b7da4d3f 100644
--- a/epan/dfilter/dfilter.c
+++ b/epan/dfilter/dfilter.c
@@ -171,12 +171,6 @@ dfwork_new(void)
dfwork_t *dfw;
dfw = g_new0(dfwork_t, 1);
-
- dfw->st_root = NULL;
- dfw->insns = NULL;
- dfw->consts = NULL;
- dfw->loaded_fields = NULL;
- dfw->interesting_fields = NULL;
dfw->first_constant = -1;
return dfw;