summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-07-28 15:53:21 -0500
committerJoel Sherrill <joel@rtems.org>2017-07-28 15:53:21 -0500
commit3ebbabbb9307ce1e2f2a0ccfe6cafb4242f3410e (patch)
treed367ce87c7eaf4bf858c3c9a875cef2d4a6fc4ff
parentRemove Edison BSP. (diff)
downloadrtems-3ebbabbb9307ce1e2f2a0ccfe6cafb4242f3410e.tar.bz2
psximfs02/init.c: Increase size of buffer to avoid overwrite
-rw-r--r--testsuites/psxtests/psximfs02/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psximfs02/init.c b/testsuites/psxtests/psximfs02/init.c
index d9bb4db1e2..047a4fcff5 100644
--- a/testsuites/psxtests/psximfs02/init.c
+++ b/testsuites/psxtests/psximfs02/init.c
@@ -50,8 +50,8 @@ rtems_task Init(
int status = 0;
void *opaque;
- char linkname_n[20] = {0};
- char linkname_p[20] = {0};
+ char linkname_n[32] = {0};
+ char linkname_p[32] = {0};
int i;
struct stat stat_buf;