aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-09 14:42:18 +0200
committerMichael Mann <mmann78@netscape.net>2017-05-09 13:38:01 +0000
commitea3b356eb2ed8afc9ad370db71067e9451bb4671 (patch)
tree711c2523336549e96579d3f7729dca790645af40
parent666366e069ab52308139048a70591284e97e2095 (diff)
nm: Uninitialized argument value Warning found by Clang Analyzer
false positive Change-Id: I8aa2537328a04a64b06142a04ee76705d0df5443 Reviewed-on: https://code.wireshark.org/review/21566 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-udp-nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-udp-nm.c b/epan/dissectors/packet-udp-nm.c
index ed7b9f1ea2..7bc94c025c 100644
--- a/epan/dissectors/packet-udp-nm.c
+++ b/epan/dissectors/packet-udp-nm.c
@@ -356,7 +356,7 @@ dissect_udp_nm(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, void *da
guint32 length = 0;
guint32 msg_length = 0;
guint32 ctrl_bit_vector;
- guint32 src_node_id;
+ guint32 src_node_id = 0;
guint i = 0;
int* hf_id;
int ett_id;