opus: fix build error on MacOS for commit ecd1ab5b23

This commit is contained in:
Lin Sun 2021-05-26 08:13:44 +00:00 committed by Wireshark GitLab Utility
parent 1513237d10
commit 7f63556627
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ dissect_opus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_
struct FRAME_T {
int16_t begin;
int16_t size;
} frames[MAX_FRAMES_COUNT] = {0};
} frames[MAX_FRAMES_COUNT] = {{0}};
int frame_count = 0;
static int *toc_fields[]
= {&hf_opus_toc_config, &hf_opus_toc_s, &hf_opus_toc_c};