erf(wiretap): Fix Clang Warning Uninitialized argument value

This commit is contained in:
Alexis La Goutte 2022-01-09 14:41:15 +00:00 committed by A Wireshark GitLab Utility
parent 153f836ab3
commit 112af30dd9
1 changed files with 1 additions and 1 deletions

View File

@ -2047,7 +2047,7 @@ static int erf_dump_open(wtap_dumper *wdh, int *err _U_, gchar **err_info _U_)
erf_dump_t *dump_priv;
gchar *s;
guint64 host_id;
char *first_shb_comment;
char *first_shb_comment = NULL;
dump_priv = erf_dump_priv_create();