Squelch some unitialized variable warnings.

svn path=/trunk/; revision=14652
This commit is contained in:
Guy Harris 2005-06-16 06:31:25 +00:00
parent 0583a7ef79
commit ef37a1f7d2
1 changed files with 3 additions and 3 deletions

View File

@ -581,10 +581,10 @@ static int dissect_jxta_tcp(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tr
gboolean dissected;
conversation_t *peer_conversation = NULL;
address saved_src_addr;
guint32 saved_src_port;
guint32 saved_src_port = 0;
address saved_dst_addr;
guint32 saved_dst_port;
port_type saved_port_type;
guint32 saved_dst_port = 0;
port_type saved_port_type = NULL;
if( (AT_NONE != tpt_conv_data->initiator_address.type) && (AT_NONE != tpt_conv_data->receiver_address.type) ) {
peer_conversation =