aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Dreibholz <dreibh@simula.no>2021-04-29 12:31:16 +0200
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-04-30 08:43:36 +0000
commit09147397007c5456fd5acd4794b5ba15330bdad3 (patch)
treee87ced0ea1b53c405823c843048997c9a6dbcbc1
parent5a109265a6d7ef9b2bef8d166c84b5508e118645 (diff)
MAC-NR: workaround a gcc 9.3.0 for AMR64 false positive.
-rw-r--r--epan/dissectors/packet-mac-nr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mac-nr.c b/epan/dissectors/packet-mac-nr.c
index 0c25acb560..781d413a52 100644
--- a/epan/dissectors/packet-mac-nr.c
+++ b/epan/dissectors/packet-mac-nr.c
@@ -1824,7 +1824,7 @@ static void dissect_ulsch_or_dlsch(tvbuff_t *tvb, packet_info *pinfo, proto_tree
};
guint32 start_offset = offset;
guint8 scell_bitmap1;
- guint32 scell_bitmap2_3_4;
+ guint32 scell_bitmap2_3_4 = 0;
proto_tree_add_bitmask_list(subheader_tree, tvb, offset, 1, me_phr_byte1_flags, ENC_NA);
scell_bitmap1 = tvb_get_guint8(tvb, offset);
offset++;