From: Romain Forlot Date: Mon, 4 Dec 2017 16:35:21 +0000 (+0100) Subject: Avoid memory collision. X-Git-Tag: 5.99.1~32 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=e0c00c4b88e0d67bb352f22623caa4c306205bc5;p=apps%2Fapp-afb-helpers-submodule.git Avoid memory collision. Change-Id: I805a725d6b9477fcb690d7c2c7cbb6bb4f112dfb Signed-off-by: Romain Forlot --- diff --git a/filescan-utils.c b/filescan-utils.c index 37cc2b3..a20179c 100644 --- a/filescan-utils.c +++ b/filescan-utils.c @@ -120,7 +120,7 @@ PUBLIC const char *GetBinderName() { binderName= getenv("AFB_BINDER_NAME"); if (!binderName) { - char psName[17]; + static char psName[17]; // retrieve binder name from process name afb-name-trailer prctl(PR_GET_NAME, psName,NULL,NULL,NULL); binderName=(char*)GetMidleName(psName);