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>
This commit is contained in:
Alexis La Goutte 2017-05-09 14:42:18 +02:00 committed by Michael Mann
parent 666366e069
commit ea3b356eb2
1 changed files with 1 additions and 1 deletions

View File

@ -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;