diff options
author | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-10-11 08:57:08 +0000 |
---|---|---|
committer | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-10-11 08:57:08 +0000 |
commit | ca53b00b7ee1afa89c682be3040ab166ca9ef0a6 (patch) | |
tree | f8b5b9daf18d164d8e9f5115f92d1d9baf48c330 /epan/proto.c | |
parent | b998cb04de554b24c28bdae37766f1720540184d (diff) | |
download | wireshark-ca53b00b7ee1afa89c682be3040ab166ca9ef0a6.tar.gz wireshark-ca53b00b7ee1afa89c682be3040ab166ca9ef0a6.tar.bz2 wireshark-ca53b00b7ee1afa89c682be3040ab166ca9ef0a6.zip |
Set tree_is_expanded to NULL after freeing it
svn path=/trunk/; revision=30498
Diffstat (limited to 'epan/proto.c')
-rw-r--r-- | epan/proto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/proto.c b/epan/proto.c index 31ef7d6133..1ef726b819 100644 --- a/epan/proto.c +++ b/epan/proto.c @@ -465,7 +465,7 @@ proto_cleanup(void) gpa_hfinfo.hfi=NULL; } g_free(tree_is_expanded); - + tree_is_expanded = NULL; } static gboolean |