Initialize linelen to avoid a warning.

svn path=/trunk/; revision=24994
This commit is contained in:
Stig Bjørlykke 2008-04-13 16:58:57 +00:00
parent b65207f6de
commit da74314d91
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ dissect_smtp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
struct smtp_request_val *request_val;
const guchar *line;
guint32 code;
int linelen;
int linelen = 0;
gint length_remaining;
gboolean eom_seen = FALSE;
gint next_offset;