]> git.eshelyaron.com Git - emacs.git/commitdiff
Prevent segfault in bootstrap-emacs on MinGW
authorEli Zaretskii <eliz@gnu.org>
Sat, 2 Feb 2019 15:12:13 +0000 (17:12 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 2 Feb 2019 15:12:13 +0000 (17:12 +0200)
* src/emacs.c (main) [WINDOWSNT]: Fix logic of determining by
argv[0] whether to use the static heap.  (Bug#34277)

src/emacs.c

index ff814a149b31f76737d1d6299b983b01058c4d5c..869b5307f2354b3d4a86aefdb444323ce33b5730 100644 (file)
@@ -914,7 +914,9 @@ main (int argc, char **argv)
      happens.  This relies on the static heap being needed only in
      temacs and only if we are going to dump with unexec.  */
   bool use_dynamic_heap = false;
-  if (strstr (argv[0], "temacs") != NULL)
+  char *temacs_str = strstr (argv[0], "temacs");
+  if (temacs_str != NULL
+      && (temacs_str == argv[0] || IS_DIRECTORY_SEP (temacs_str[-1])))
     {
       eassert (temacs);
       /* Note that gflags are set at this point only if we have been