Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fopen: fix narrowing conversion warning on 32-bit Android #12998

Conversation

kiefer-andreas
Copy link
Contributor

@kiefer-andreas kiefer-andreas commented Feb 26, 2024

This was fixed in commit 06dc599, but came back in commit 03cb1ff.

When building for 32-bit ARM or x86 Android, st_mode is defined as unsigned int instead of mode_t, resulting in a -Wimplicit-int-conversion clang warning because mode_t is unsigned short. Add a cast to silence the warning, but only for Android builds, because other architectures and platforms are not affected.

Ref: https://android.googlesource.com/platform/bionic/+/refs/tags/ndk-r25c/libc/include/sys/stat.h#86

@bagder
Copy link
Member

bagder commented Feb 26, 2024

The description says "on 32-bit Android" but the code is clearly done unconditionally for all Android builds. I presume that is what is intended even though there is no mention of non-32 bit?

@kiefer-andreas
Copy link
Contributor Author

Ah, yes. Sorry. For 64-bit st_mode is defined as mode_t, so the cast is not necessary. Will update the commit.

This was fixed in commit 06dc599, but came back in commit
03cb1ff.

When building for 32-bit ARM or x86 Android, `st_mode` is defined as
`unsigned int` instead of `mode_t`, resulting in a
`-Wimplicit-int-conversion` clang warning because `mode_t` is
`unsigned short`. Add a cast to silence the warning, but only for
Android builds, because other architectures and platforms are not
affected.

Ref: https://android.googlesource.com/platform/bionic/+/refs/tags/ndk-r25c/libc/include/sys/stat.h#86
@MarcelRaad
Copy link
Member

Thanks Andreas!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants