We are currently migrating Bugzilla to GitHub issues.
Any changes made to the bug tracker now will be lost, so please do not post new bugs or make changes to them.
When we're done, all bug URLs will redirect to their equivalent location on the new bug tracker.

Bug 5541 - SDL_string.c uses intptr_t, which may actually be undefined.
Summary: SDL_string.c uses intptr_t, which may actually be undefined.
Status: NEW
Alias: None
Product: SDL
Classification: Unclassified
Component: *don't know* (show other bugs)
Version: HG 2.0
Hardware: x86 Windows 10
: P2 normal
Assignee: Ryan C. Gordon
QA Contact: Sam Lantinga
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-02-09 13:57 UTC by vladius
Modified: 2021-02-09 13:57 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description vladius 2021-02-09 13:57:14 UTC
The module's code may use intptr_t, which may actually be undefined in case LIBC is not available.
uintptr_t seems to be more assured. Maybe use that type instead?