]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix ebrowse -f buffer overflow
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 15 May 2023 01:51:22 +0000 (18:51 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 15 May 2023 02:28:10 +0000 (19:28 -0700)
* lib-src/ebrowse.c (main): Fix buffer overflow when several -f
options are given.  Found by GCC 13 -Wanalyzer-allocation-size.

lib-src/ebrowse.c

index 371fa6c938bd05817d4efc11bc47979d2d3850a6..4b71f7447e09a607efd4be9b3699e18c887ed55d 100644 (file)
@@ -3767,8 +3767,9 @@ main (int argc, char **argv)
          if (n_input_files == input_filenames_size)
            {
              input_filenames_size = max (10, 2 * input_filenames_size);
-             input_filenames = (char **) xrealloc ((void *)input_filenames,
-                                                   input_filenames_size);
+             input_filenames = xrealloc (input_filenames,
+                                         (input_filenames_size
+                                          * sizeof *input_filenames));
            }
           input_filenames[n_input_files++] = xstrdup (optarg);
           break;