aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btobex.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-18 10:45:39 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-18 10:45:39 +0000
commit18ffebbae29ddb4de3d6b2225f413e13099301dc (patch)
tree8a509ae50a16d26094a56c06cf863b8568583be7 /epan/dissectors/packet-btobex.c
parent80d80dc29da20ad37ee7405916ece321371d7f6e (diff)
Remove a couple of superfluous NULL assignments
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32872 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-btobex.c')
-rw-r--r--epan/dissectors/packet-btobex.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/epan/dissectors/packet-btobex.c b/epan/dissectors/packet-btobex.c
index 8f66d6c530..a23a71d166 100644
--- a/epan/dissectors/packet-btobex.c
+++ b/epan/dissectors/packet-btobex.c
@@ -72,8 +72,8 @@ static int hf_btobex_reassembled_length = -1;
static gint ett_btobex_fragment = -1;
static gint ett_btobex_fragments = -1;
-static GHashTable *fragment_table = NULL;
-static GHashTable *reassembled_table = NULL;
+static GHashTable *fragment_table;
+static GHashTable *reassembled_table;
static const fragment_items btobex_frag_items = {
&ett_btobex_fragment,
@@ -95,9 +95,10 @@ static gint ett_btobex = -1;
static gint ett_btobex_hdrs = -1;
static gint ett_btobex_hdr = -1;
-static guint8 last_opcode[2] = {1,1};
-static dissector_handle_t xml_handle=NULL;
-static dissector_handle_t data_handle=NULL;
+static guint8 last_opcode[2] = { 1, 1 };
+
+static dissector_handle_t xml_handle;
+static dissector_handle_t data_handle;
typedef struct _ext_value_string {
guint8 value[16];