]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR ada/79309
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Feb 2017 20:36:23 +0000 (20:36 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Feb 2017 20:36:23 +0000 (20:36 +0000)
* adaint.c (__gnat_killprocesstree): Fix broken string handling.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@245103 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/ChangeLog
gcc/ada/adaint.c

index 8f394b03ca902448f575c263ab924b5d38e7c9c2..387cfbfc559bf0e38aff89754abf96e9a7822d1c 100644 (file)
@@ -1,3 +1,9 @@
+2017-02-01  Eric Botcazou  <ebotcazou@adacore.com>
+            Jakub Jelinek  <jakub@redhat.com>
+
+       PR ada/79309
+       * adaint.c (__gnat_killprocesstree): Fix broken string handling.
+
 2017-01-25  Maxim Ostapenko  <m.ostapenko@samsung.com>
 
        PR lto/79061
index 54a1d6e25c3196bd5ac91d190d5ba964545fd913..e5fea3eefe086cd556bea7dc2d25f4f3ea3270ab 100644 (file)
@@ -3396,14 +3396,16 @@ void __gnat_killprocesstree (int pid, int sig_num)
     {
       if ((d->d_type & DT_DIR) == DT_DIR)
         {
-          char statfile[64] = { 0 };
+          char statfile[64];
           int _pid, _ppid;
 
           /* read /proc/<PID>/stat */
 
-          strncpy (statfile, "/proc/", sizeof(statfile));
-          strncat (statfile, d->d_name, sizeof(statfile));
-          strncat (statfile, "/stat", sizeof(statfile));
+          if (strlen (d->d_name) >= sizeof (statfile) - sizeof ("/proc//stat"))
+            continue;
+          strcpy (statfile, "/proc/");
+          strcat (statfile, d->d_name);
+          strcat (statfile, "/stat");
 
           FILE *fd = fopen (statfile, "r");