]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/android.c (android_rewrite_spawn_argv): Fix typo.
authorPo Lu <luangruo@yahoo.com>
Tue, 11 Mar 2025 02:14:30 +0000 (10:14 +0800)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:56:56 +0000 (19:56 +0100)
(cherry picked from commit f6a56ddb5dd84c9984d49c9c223e043844ae47ae)

src/android.c

index 6a6996a438b92f872abb20052663a1d30ae3e213..0be3e10dea4b7bfa881d5e84ee50c862a3616a16 100644 (file)
@@ -7426,7 +7426,7 @@ android_rewrite_spawn_argv (const char ***argv)
 
   /* Allocate a buffer in which to save the rewritten argument
      array.  */
-  if (n_new_args != nargs)
+  if (n_new_args != nargs + 2)
     {
       new_args = xrealloc (new_args, sizeof *new_args * (nargs + 3));
       n_new_args = nargs + 2;