From 6a5c0eb7cf9b9223958d94f2fb415babc088300b Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 14 Dec 2012 13:35:48 +0000 Subject: [PATCH] efl/embryo: Keep room for the terminating '\0' we may add to the path. If we go with PATH_MAX we could go out of bounds of this array. Not going to happen that often really but better safe then sorry. SVN revision: 80940 --- src/bin/embryo/embryo_cc_sc1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/embryo/embryo_cc_sc1.c b/src/bin/embryo/embryo_cc_sc1.c index 760bd3c1f6..2e0528cdd4 100644 --- a/src/bin/embryo/embryo_cc_sc1.c +++ b/src/bin/embryo/embryo_cc_sc1.c @@ -651,7 +651,7 @@ setopt(int argc, char **argv, char *iname, char *oname, static void setconfig(char *root) { - char path[PATH_MAX]; + char path[PATH_MAX - 1]; char *ptr; int len;