You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
694 B
18 lines
694 B
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; |
|
|
|
|