nmeter: fix read past the end if a buffer. Closes 4594
authorDenis Vlasenko <vda.linux@googlemail.com>
Thu, 14 Aug 2008 21:57:43 +0000 (21:57 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Thu, 14 Aug 2008 21:57:43 +0000 (21:57 -0000)
procps/nmeter.c

index 48a5b4e..cded67e 100644 (file)
@@ -786,8 +786,10 @@ int nmeter_main(int argc, char **argv)
        if (argc != 2)
                bb_show_usage();
 
-       if (open_read_close("version", buf, sizeof(buf)) > 0)
-               is26 = (strstr(buf, " 2.4.")==NULL);
+       if (open_read_close("version", buf, sizeof(buf)-1) > 0) {
+               buf[sizeof(buf)-1] = '\0';
+               is26 = (strstr(buf, " 2.4.") == NULL);
+       }
 
        // Can use argv[1] directly, but this will mess up
        // parameters as seen by e.g. ps. Making a copy...