From cbbe611c7a35a7e5ce07b09fa3aeb1a9cb2b948e Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Mon, 24 May 2021 19:18:23 +0000 Subject: dcerpc: Fix warning found by Clang Analyzer packet-dcerpc.c:4381:17: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] (cherry picked from commit 558a32ba863092b5373da6c22fd520c416c72029) --- epan/dissectors/packet-dcerpc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/epan/dissectors/packet-dcerpc.c b/epan/dissectors/packet-dcerpc.c index a57b2849eb..fd54654588 100644 --- a/epan/dissectors/packet-dcerpc.c +++ b/epan/dissectors/packet-dcerpc.c @@ -3839,6 +3839,7 @@ dissect_dcerpc_cn_auth(tvbuff_t *tvb, int stub_offset, packet_info *pinfo, auth_info->auth_tvb = NULL; auth_info->auth_item = NULL; auth_info->auth_tree = NULL; + auth_info->auth_hdr_tvb = NULL; /* * The authentication information is at the *end* of the PDU; in -- cgit v1.2.3