Initial a variable to prevent a (not actualy valid) compiler warning:

'inst_count' may be used uninitialized in this function.

svn path=/trunk/; revision=39400
This commit is contained in:
Bill Meier 2011-10-13 01:24:43 +00:00
parent de7561dc53
commit 47c7565571
1 changed files with 1 additions and 1 deletions

View File

@ -1833,7 +1833,7 @@ dissect_cipmotion(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree)
{
/* Sizes of the individual channels within the connection */
guint32 cyc_size, cyc_blk_size, evnt_size, servc_size;
guint32 inst_count, inst;
guint32 inst_count = 0, inst;
/* Dissect the header fields */
switch(con_format)