[procps] [PATCH 1/4] Fix potential bufferoverflow in pwdx

  • From: Werner Fink <werner@xxxxxxx>
  • To: undisclosed-recipients: ;
  • Date: Mon, 20 Dec 2010 12:46:37 +0100

 Fix potential bufferoverflow in pwdx
 Novell bugzilla entry 78074

Signed-off-by: Werner Fink <werner@xxxxxxx>

diff --git a/pwdx.c b/pwdx.c
index cb96a52..bda1bf1 100644
--- a/pwdx.c
+++ b/pwdx.c
@@ -60,6 +60,7 @@ int main(int argc, char* argv[])
      for (i = 1; i < argc; i++) {
           if (regexec(&re, argv[i], 0, NULL, 0) != 0) {
                snprintf(buf, sizeof buf, "pwdx: invalid process id: %s\n", 
argv[i]);
+               buf[sizeof(buf)-1] = '\0';
                die(buf);
           }
           if (!strcmp("-V", argv[i]) || !strcmp("--version", argv[i]))
-- 
1.6.0.2


Other related posts:

  • » [procps] [PATCH 1/4] Fix potential bufferoverflow in pwdx - Werner Fink