Initialize a byte to avoid more valgrind warnings.

svn path=/trunk/; revision=44019
This commit is contained in:
Martin Mathieson 2012-07-25 22:56:08 +00:00
parent c6bf60f74b
commit ca8d59f834
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ catapult_dct2000_read(wtap *wth, int *err, gchar **err_info _U_,
static gchar linebuff[MAX_LINE_LENGTH+1];
gchar aal_header_chars[AAL_HEADER_CHARS];
gchar context_name[MAX_CONTEXT_NAME];
guint8 context_port;
guint8 context_port = 0;
gchar protocol_name[MAX_PROTOCOL_NAME+1];
gchar variant_name[MAX_VARIANT_DIGITS+1];
gchar outhdr_name[MAX_OUTHDR_NAME+1];