changeset 2836:da90bf6d0564

Andrdoid: Mask out alignment and other flags when returning the container column type.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 12 Sep 2022 20:59:59 +0000
parents 1f0017a07771
children 444031116159
files android/dw.cpp
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/android/dw.cpp	Mon Sep 12 18:53:47 2022 +0000
+++ b/android/dw.cpp	Mon Sep 12 20:59:59 2022 +0000
@@ -4056,6 +4056,7 @@
 {
     JNIEnv *env;
     int retval = 0;
+    int mask = (DW_CFA_BITMAPORICON | DW_CFA_STRING | DW_CFA_ULONG | DW_CFA_TIME | DW_CFA_DATE);
 
     if((env = (JNIEnv *)pthread_getspecific(_dw_env_key)))
     {
@@ -4069,7 +4070,7 @@
         if(_dw_jni_check_exception(env))
             retval = 0;
     }
-    return retval;
+    return (retval & mask);
 }
 
 /*