Squelch some uninitialized-variable warnings (they're false positives).
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 20 Feb 2010 18:51:56 +0000 (18:51 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 20 Feb 2010 18:51:56 +0000 (18:51 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31936 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-ltp.c

index 1c9e686f3cd2ce0754c8214b90b37d25c096f450..76ec1f21d3ec13754d0045086330feabcd58b403 100644 (file)
@@ -202,8 +202,8 @@ dissect_data_segment(proto_tree *ltp_tree, tvbuff_t *tvb,packet_info *pinfo,int
        guint64 client_id;
        guint64 offset;
        guint64 length;
-       guint64 chkp_sno;
-       guint64 rpt_sno;
+       guint64 chkp_sno = 0;
+       guint64 rpt_sno = 0;
 
        int segment_offset = 0;