Remove call to release on an automatically memory managed object

This call even reliably caused a crash for code I was trying to develop.
This commit is contained in:
Luflosi 2019-12-25 20:29:07 +01:00
parent 6df64613f2
commit c497c0f96a
No known key found for this signature in database
GPG Key ID: 4E41E29EDCC345D0

View File

@ -258,7 +258,6 @@ cocoa_create_global_menu(void) {
[new_os_window_menu_item setKeyEquivalentModifierMask:new_window_mods];
[new_os_window_menu_item setTarget:global_menu_target];
[appMenu addItem:new_os_window_menu_item];
[s release];
}