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 1788 - infinite recursion
Summary: infinite recursion
Status: RESOLVED FIXED
Alias: None
Product: SDL
Classification: Unclassified
Component: *don't know* (show other bugs)
Version: HG 2.0
Hardware: x86_64 Windows 7
: P2 normal
Assignee: Ryan C. Gordon
QA Contact: Sam Lantinga
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-05 12:05 UTC by Marcel Bakker
Modified: 2013-04-05 16:35 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 Marcel Bakker 2013-04-05 12:05:10 UTC
in sdl_string.c(rev_7057) line 926

int SDL_strcasecmp(const char *str1, const char *str2) { return SDL_strcasecmp(str1, str2); }

should be 

int SDL_strcasecmp(const char *str1, const char *str2) { return SDL_strcasecmp_inline(str1, str2); }
Comment 1 Ryan C. Gordon 2013-04-05 16:35:36 UTC
Whoops, good catch.

Fixed in hg changeset 64a2c8c882e1, thanks!

--ryan.