]> git.eshelyaron.com Git - emacs.git/commitdiff
; Update Android port
authorPo Lu <luangruo@yahoo.com>
Sat, 29 Jul 2023 04:50:06 +0000 (12:50 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 29 Jul 2023 04:50:06 +0000 (12:50 +0800)
* src/androidvfs.c (android_saf_exception_check): Describe
exceptions earlier.

src/androidvfs.c

index babc7101d8814509925965b5568b0f6289519892..b175f7746f3da8b695ff8ecf44529cdca6a98476 100644 (file)
@@ -3739,15 +3739,17 @@ android_saf_exception_check (int n, ...)
     /* No exception has taken place.  Return 0.  */
     return 0;
 
+  /* Print the exception.  */
+  (*env)->ExceptionDescribe (env);
+
   exception = (*env)->ExceptionOccurred (env);
 
   if (!exception)
     /* JNI couldn't return a local reference to the exception.  */
     memory_full (0);
 
-  /* Print and clear the exception, making it safe to subsequently
-     call other JNI functions.  */
-  (*env)->ExceptionDescribe (env);
+  /* Clear the exception, making it safe to subsequently call other
+     JNI functions.  */
   (*env)->ExceptionClear (env);
 
   /* Delete each of the N arguments.  */