19 lines
694 B
Diff
19 lines
694 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/epan/profinet/packet-dcom-cba.c b/plugins/epan/profinet/packet-dcom-cba.c
|
||
|
index 0f1658a..f7fd322 100644
|
||
|
--- a/plugins/epan/profinet/packet-dcom-cba.c
|
||
|
+++ b/plugins/epan/profinet/packet-dcom-cba.c
|
||
|
@@ -555,7 +555,7 @@ dissect_ICBAPhysicalDevice_get_LogicalDevice_rqst(tvbuff_t *tvb, int offset,
|
||
|
packet_info *pinfo, proto_tree *tree, dcerpc_info *di, guint8 *drep)
|
||
|
{
|
||
|
guint32 u32Pointer;
|
||
|
- gchar szStr[1000];
|
||
|
+ gchar szStr[1000] = "";
|
||
|
guint32 u32MaxStr = sizeof(szStr);
|
||
|
gchar *call;
|
||
|
|