Static analysis fix: bad release.

(object is already init'd at this point, so -[obj init] destroys
 existing reference count.)
main
Ryan C. Gordon 2014-03-19 23:19:34 -04:00
parent a7b84069ec
commit bcc2ed09b5
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ Cocoa_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShape
pool = [[NSAutoreleasePool alloc] init];
closure.view = [windata->nswindow contentView];
closure.path = [[NSBezierPath bezierPath] init];
closure.path = [NSBezierPath bezierPath];
closure.window = shaper->window;
SDL_TraverseShapeTree(data->shape,&ConvertRects,&closure);
[closure.path addClip];