diff options
| author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2022-01-09 14:41:15 +0000 |
|---|---|---|
| committer | Guy Harris <gharris@sonic.net> | 2022-01-15 23:08:00 +0000 |
| commit | 2b4956c1520fc894de1417b0346d9e0d50db7c19 (patch) | |
| tree | b3a8d448c0f0dfeb020ee6d4cacdd3c04d3a37a3 | |
| parent | 2092ba64b579c18506bc2ef538807f293700105c (diff) | |
| download | wireshark-cherry-pick-112af30d.tar.gz wireshark-cherry-pick-112af30d.tar.bz2 wireshark-cherry-pick-112af30d.zip | |
erf(wiretap): Fix Clang Warning Uninitialized argument valuecherry-pick-112af30d
(cherry picked from commit 112af30dd9f51f5686822cc70a3373d51e7a8304)
| -rw-r--r-- | wiretap/erf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/erf.c b/wiretap/erf.c index 21dfbb0ae1..1294da3a91 100644 --- a/wiretap/erf.c +++ b/wiretap/erf.c @@ -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(); |
