Skip to content

Commit

Permalink
MAC-NR: workaround a gcc 9.3.0 for AMR64 false positive.
Browse files Browse the repository at this point in the history
  • Loading branch information
dreibh authored and Wireshark GitLab Utility committed Apr 30, 2021
1 parent 5a10926 commit 0914739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epan/dissectors/packet-mac-nr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
Expand Down

0 comments on commit 0914739

Please sign in to comment.