mirror of https://github.com/encounter/SDL.git
Fixed potential double-free in mouse cleanup code
This commit is contained in:
parent
5dcac4ccdf
commit
3e720d2a80
|
@ -348,10 +348,9 @@ Cocoa_InitMouse(_THIS)
|
||||||
|
|
||||||
Cocoa_InitMouseEventTap(mouse->driverdata);
|
Cocoa_InitMouseEventTap(mouse->driverdata);
|
||||||
|
|
||||||
SDL_MouseData *driverdata = (SDL_MouseData*)mouse->driverdata;
|
|
||||||
const NSPoint location = [NSEvent mouseLocation];
|
const NSPoint location = [NSEvent mouseLocation];
|
||||||
driverdata->lastMoveX = location.x;
|
mouse->driverdata->lastMoveX = location.x;
|
||||||
driverdata->lastMoveY = location.y;
|
mouse->driverdata->lastMoveY = location.y;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -482,9 +481,10 @@ Cocoa_QuitMouse(_THIS)
|
||||||
if (mouse) {
|
if (mouse) {
|
||||||
if (mouse->driverdata) {
|
if (mouse->driverdata) {
|
||||||
Cocoa_QuitMouseEventTap(((SDL_MouseData*)mouse->driverdata));
|
Cocoa_QuitMouseEventTap(((SDL_MouseData*)mouse->driverdata));
|
||||||
}
|
|
||||||
|
|
||||||
SDL_free(mouse->driverdata);
|
SDL_free(mouse->driverdata);
|
||||||
|
mouse->driverdata = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue