Replaced Unlock() with UnlockFully() in BWindow's destructor, fixes bug
406 git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18579 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -357,7 +357,10 @@ BWindow::~BWindow()
|
|||||||
// The BWindow is locked when the destructor is called,
|
// The BWindow is locked when the destructor is called,
|
||||||
// we need to unlock because the menubar thread tries
|
// we need to unlock because the menubar thread tries
|
||||||
// to post a message, which will deadlock otherwise.
|
// to post a message, which will deadlock otherwise.
|
||||||
Unlock();
|
// TODO: I replaced Unlock() with UnlockFully() because the window
|
||||||
|
// was kept locked after that in case it was closed using ALT-W.
|
||||||
|
// There might be an extra Lock() somewhere in the quitting path...
|
||||||
|
UnlockFully();
|
||||||
|
|
||||||
// Wait if a menu is still tracking
|
// Wait if a menu is still tracking
|
||||||
if (fMenuSem > 0) {
|
if (fMenuSem > 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user