From 8c91a53ea90d39581c4ffaf52821afb4b2671c0b Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Wed, 10 Jun 2015 11:10:16 +0200 Subject: [PATCH] - fixed bug #357: buffer overflow in client control modul with long IED+LD names --- src/iec61850/client/client_control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iec61850/client/client_control.c b/src/iec61850/client/client_control.c index 41b67ccc..3aa4ccae 100644 --- a/src/iec61850/client/client_control.c +++ b/src/iec61850/client/client_control.c @@ -109,7 +109,7 @@ ControlObjectClient_create(const char* objectReference, IedConnection connection /* request control model from server */ char domainId[65]; - char itemId[65]; + char itemId[129]; char* domainName = MmsMapping_getMmsDomainFromObjectReference(objectReference, domainId);