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

Summary: infinite recursion
Product: SDL Reporter: Marcel Bakker <mna.bakker>
Component: *don't know*Assignee: Ryan C. Gordon <icculus>
Status: RESOLVED FIXED QA Contact: Sam Lantinga <slouken>
Severity: normal    
Priority: P2    
Version: HG 2.0   
Hardware: x86_64   
OS: Windows 7   

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.