# HG changeset patch # User Ryan C. Gordon # Date 1175678139 0 # Node ID 79a4c90175507879024d959966c40c6aaf2742f6 # Parent 56ec4d96248714c40848e54701552c8e0726311d Fixed buggy SDL_VIDEO_X11_MOUSEACCEL behaviour...correctly free buffer, and only call XChangePointerControl() if we have valid arguments. Fixes Bugzilla #417. diff -r 56ec4d962487 -r 79a4c9017550 src/video/x11/SDL_x11mouse.c --- a/src/video/x11/SDL_x11mouse.c Sun Apr 01 03:27:45 2007 +0000 +++ b/src/video/x11/SDL_x11mouse.c Wed Apr 04 09:15:39 2007 +0000 @@ -216,11 +216,11 @@ mouse_param = NULL; } } - if ( mouse_param_buf ) { + if ( i == 3 ) { XChangePointerControl(SDL_Display, True, True, accel_value[0], accel_value[1], accel_value[2]); - SDL_free(mouse_param_buf); } + SDL_stack_free(mouse_param_buf); } /* Check to see if we need to enter or leave mouse relative mode */