summaryrefslogtreecommitdiff
path: root/plugins/opcua/opcua.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-10 19:30:37 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-10 19:30:37 +0000
commitaf28be359887b8575db28fb812c2344b9d55268f (patch)
tree33e5f01ee8c83731c531fdb8004b3faea8c9dd7f /plugins/opcua/opcua.c
parentebacca89a79f3d08d1cc63fdc1a77bdd37c20477 (diff)
downloadwireshark-af28be359887b8575db28fb812c2344b9d55268f.tar.gz
Fix a (benign) ERROR: NO ARRAY: opcua/opcua.c, hf_opcua_reassembled_data
svn path=/trunk/; revision=47614
Diffstat (limited to 'plugins/opcua/opcua.c')
-rw-r--r--plugins/opcua/opcua.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/opcua/opcua.c b/plugins/opcua/opcua.c
index d42ace6c85..d4d9e1e0c8 100644
--- a/plugins/opcua/opcua.c
+++ b/plugins/opcua/opcua.c
@@ -72,7 +72,6 @@ static int hf_opcua_fragment_error = -1;
static int hf_opcua_fragment_count = -1;
static int hf_opcua_reassembled_in = -1;
static int hf_opcua_reassembled_length = -1;
-static int hf_opcua_reassembled_data = -1;
static const fragment_items opcua_frag_items = {
/* Fragment subtrees */
@@ -92,7 +91,7 @@ static const fragment_items opcua_frag_items = {
/* Reassembled length field */
&hf_opcua_reassembled_length,
/* Reassembled data field */
- &hf_opcua_reassembled_data,
+ NULL,
/* Tag */
"Message fragments"
};