]> Zhao Yanbai Git Server - minix.git/commitdiff
str[] is too small - reported by Erik van der Kouwe <vdkouwe@cs.vu.nl>.
authorBen Gras <ben@minix3.org>
Mon, 23 Apr 2007 13:36:13 +0000 (13:36 +0000)
committerBen Gras <ben@minix3.org>
Mon, 23 Apr 2007 13:36:13 +0000 (13:36 +0000)
servers/is/dmp_pm.c

index c6441c788b05fd1f5bb682dcd36b8ad2bde71eba..2853aec2cfca6d88968950c5eaf4c81f235e681f 100644 (file)
@@ -20,7 +20,7 @@ PUBLIC struct mproc mproc[NR_PROCS];
  *===========================================================================*/
 PRIVATE char *flags_str(int flags)
 {
-       static char str[10];
+       static char str[13];
        str[0] = (flags & WAITING) ? 'W' : '-';
        str[1] = (flags & ZOMBIE)  ? 'Z' : '-';
        str[2] = (flags & PAUSED)  ? 'P' : '-';