You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MDEV-36168 ASAN error in Item_func_latlongfromgeohash::decode_geohash (postfix)
pppc64le, aarch64, and s390x have char defined as unsigned so
a < 0 comparison is a compile error. The CHAR_MIN defined in limits.h
is 0 on these platforms, false, meaning the if condition is only on
signed char platforms.
To make the interface cleaner we return true on out == 255 to simplify
the calling function.
0 commit comments