SDL-1.2: Quartz fullscreen video contentRect was used uninitialized.
1.1 --- a/src/video/quartz/SDL_QuartzVideo.m Fri Apr 23 02:19:19 2010 -0700
1.2 +++ b/src/video/quartz/SDL_QuartzVideo.m Sun Apr 25 20:16:38 2010 -0400
1.3 @@ -479,6 +479,8 @@
1.4 NSRect contentRect;
1.5 CGDisplayFadeReservationToken fade_token = kCGDisplayFadeReservationInvalidToken;
1.6
1.7 + contentRect = NSMakeRect (0, 0, width, height);
1.8 +
1.9 /* Fade to black to hide resolution-switching flicker (and garbage
1.10 that is displayed by a destroyed OpenGL context, if applicable) */
1.11 if ( CGAcquireDisplayFadeReservation (5, &fade_token) == kCGErrorSuccess ) {