Mercurial > sdl-ios-xcode
diff test/testgesture.c @ 4921:40a43c6d9220
Fixed crash if the gesture coordinates go negative - FIXME: Should this protection be at a lower level?
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 30 Nov 2010 18:08:01 -0800 |
parents | f5f70fed2c4c |
children | e8916fe9cfc8 |
line wrap: on
line diff
--- a/test/testgesture.c Tue Nov 30 18:07:31 2010 -0800 +++ b/test/testgesture.c Tue Nov 30 18:08:01 2010 -0800 @@ -81,8 +81,8 @@ int y = (int)_y; float a; - if(x > screen->w) return; - if(y > screen->h) return; + if(x < 0 || x > screen->w) return; + if(y < 0 || y > screen->h) return; pixmem32 = (Uint32*) screen->pixels + y*screen->pitch/BPP + x;