Fix Coverity CID 129: initialize a couple of variables.

svn path=/trunk/; revision=17560
This commit is contained in:
Gerald Combs 2006-03-09 23:13:49 +00:00
parent 209af8f5f0
commit 65d37c099e
1 changed files with 2 additions and 2 deletions

View File

@ -540,9 +540,9 @@ find_frame_ok_cb(GtkWidget *ok_bt _U_, gpointer parent_w)
const gchar *filter_text, *string_type;
search_charset_t scs_type = SCS_ASCII_AND_UNICODE;
guint8 *bytes = NULL;
size_t nbytes;
size_t nbytes = 0;
char *string = NULL;
dfilter_t *sfcode;
dfilter_t *sfcode = NULL;
gboolean found_packet;
filter_te = (GtkWidget *)OBJECT_GET_DATA(parent_w, E_FIND_FILT_KEY);