diff options
author | drh <> | 2024-02-19 18:55:32 +0000 |
---|---|---|
committer | drh <> | 2024-02-19 18:55:32 +0000 |
commit | f40da9226d3693574e4f600e6fa2e933c97ea5f1 (patch) | |
tree | 523057e3a03d1ac554df93a5458b4bf08a04e8b1 /src/os_unix.c | |
parent | e7bdb2172c717f7ba64e15fb65b930524e759d71 (diff) | |
parent | e0a9935be1c506646566f6b7845eb381bb219e16 (diff) | |
download | sqlite-f40da9226d3693574e4f600e6fa2e933c97ea5f1.tar.gz sqlite-f40da9226d3693574e4f600e6fa2e933c97ea5f1.zip |
Merge trunk fixes into the better-optimize branch.
FossilOrigin-Name: 2cf78a5b5fce7f2d49ce185d27f50722c91a1d6c91bbcecebd4bb5244a76769f
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 4b3d63c2c..4663c22d9 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1295,8 +1295,12 @@ static int unixLogErrorAtLine( ** available, the error message will often be an empty string. Not a ** huge problem. Incorrectly concluding that the GNU version is available ** could lead to a segfault though. + ** + ** Forum post 3f13857fa4062301 reports that the Android SDK may use + ** int-type return, depending on its version. */ -#if defined(STRERROR_R_CHAR_P) || defined(__USE_GNU) +#if (defined(STRERROR_R_CHAR_P) || defined(__USE_GNU)) \ + && !defined(ANDROID) && !defined(__ANDROID__) zErr = # endif strerror_r(iErrno, aErr, sizeof(aErr)-1); |