65d033ba77
- Updated RTPproxy dissector (again) - Allow packets more than 64k (for USB capture). See patch no. 13 - Don't die during loading of some SIP capture files. See patch no. 14 - Backport support for RTPproxy dissector timeouts detection. See patch no. 15 Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
19 lines
722 B
Diff
19 lines
722 B
Diff
From: Peter Hatina <phatina@redhat.com>
|
|
Date: Wed, 4 Sep 2013 10:03:57 +0200
|
|
Subject: [PATCH] fix string overrun in plugins/profinet
|
|
|
|
|
|
diff --git a/plugins/profinet/packet-dcom-cba.c b/plugins/profinet/packet-dcom-cba.c
|
|
index b44caed..396de82 100644
|
|
--- a/plugins/profinet/packet-dcom-cba.c
|
|
+++ b/plugins/profinet/packet-dcom-cba.c
|
|
@@ -553,7 +553,7 @@ dissect_ICBAPhysicalDevice_get_LogicalDevice_rqst(tvbuff_t *tvb, int offset,
|
|
packet_info *pinfo, proto_tree *tree, guint8 *drep)
|
|
{
|
|
guint32 u32Pointer;
|
|
- gchar szStr[1000];
|
|
+ gchar szStr[1000] = "";
|
|
guint32 u32MaxStr = sizeof(szStr);
|
|
dcerpc_info *info = (dcerpc_info *) pinfo->private_data;
|
|
gchar *call;
|