aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2010-11-04 20:53:02 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2010-11-04 20:53:02 +0000
commit198ecea8961d5605a9ad3aa308088a620944a8de (patch)
tree775b5b5da811453962c8568eba2a3c5aaea2126f /epan/dissectors
parent0b1df697eae50acd7efd34a59bef1909a2509a8e (diff)
Prevent false related packet information, which may be missing or ignored.
svn path=/trunk/; revision=34779
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index f0d7027988..05763db2ed 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -3303,7 +3303,7 @@ guint sip_is_packet_resend(packet_info *pinfo,
sip_frame_result = p_get_proto_data(pinfo->fd, proto_sip);
if (sip_frame_result == NULL)
{
- sip_frame_result = se_alloc(sizeof(sip_frame_result_value));
+ sip_frame_result = se_alloc0(sizeof(sip_frame_result_value));
}
/* Store return value with this packet */