efl/embryo: Keep room for the terminating '\0' we may add to the path.
authorStefan Schmidt <stefan@datenfreihafen.org>
Fri, 14 Dec 2012 13:35:48 +0000 (13:35 +0000)
committerStefan Schmidt <stefan@datenfreihafen.org>
Fri, 14 Dec 2012 13:35:48 +0000 (13:35 +0000)
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

index 760bd3c..2e0528c 100644 (file)
@@ -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;