]> git.eshelyaron.com Git - emacs.git/commitdiff
Repair hang in android_fdopen
authorPo Lu <luangruo@yahoo.com>
Mon, 7 Aug 2023 02:18:49 +0000 (10:18 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 7 Aug 2023 02:18:49 +0000 (10:18 +0800)
* src/androidvfs.c (android_fdopen): Do not neglect to
update next when iterating through open_parcel_fds.

src/androidvfs.c

index d6daff481b032178ba184d4dabcc6ca7e014a3a1..5afa752163dc18f2f43c2d6981d73022b7b99e51 100644 (file)
@@ -5606,7 +5606,7 @@ android_saf_file_open (struct android_vnode *vnode, int flags,
 
   method = service_class.open_document;
   trunc  = (flags & O_TRUNC);
-  write  = ((flags & O_RDWR) == O_RDWR || (flags & O_WRONLY));
+  write  = (((flags & O_RDWR) == O_RDWR) || (flags & O_WRONLY));
   inside_saf_critical_section = true;
   descriptor
     = (*android_java_env)->CallNonvirtualObjectMethod (android_java_env,
@@ -6917,11 +6917,12 @@ android_fdopen (int fd, const char *mode)
          if (fd != new_fd)
            emacs_abort ();
 
-         goto open_file;
+         break;
        }
+      else
+       next = &(*next)->next;
     }
 
- open_file:
   return fdopen (fd, mode);
 }