DT2000: Fix buffer length in wiretap code

CID: 1477941


(cherry picked from commit af57fb94ac)
This commit is contained in:
Martin Mathieson 2021-06-25 09:44:35 +01:00 committed by Wireshark GitLab Utility
parent aa0f0f65e7
commit e479ced643
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ catapult_dct2000_dump(wtap_dumper *wdh, const wtap_rec *rec,
const union wtap_pseudo_header *pseudo_header = &rec->rec_header.packet_header.pseudo_header;
guint32 n;
line_prefix_info_t *prefix = NULL;
gchar time_string[16];
gchar time_string[MAX_TIMESTAMP_LEN];
gboolean is_comment;
gboolean is_sprint = FALSE;
dct2000_dump_t *dct2000;