Commit 8fc63104 by Corentin Wallez

OSXWindow release the tracking area instead of deallocing it

The Mac AMD GPU FYI bots were crashing on end2end tests exit because the NSView was trying to deallocated an NSTrackingArea that had been previously deallocated. BUG=angleproject:891 Change-Id: I933e437254cad65f18cb0518a401b8b8e9dc59a0 Reviewed-on: https://chromium-review.googlesource.com/303302Reviewed-by: 's avatarKenneth Russell <kbr@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Tested-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 242468f3
...@@ -304,7 +304,7 @@ static MouseButton TranslateMouseButton(int button) ...@@ -304,7 +304,7 @@ static MouseButton TranslateMouseButton(int button)
- (void) dealloc - (void) dealloc
{ {
[mTrackingArea dealloc]; [mTrackingArea release];
[super dealloc]; [super dealloc];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment