NULL check
This commit is contained in:
parent
004175c0d9
commit
0af37cd3bc
@ -136,7 +136,7 @@ TTeamMenu::DetachedFromWindow()
|
||||
TBarView* barView = (dynamic_cast<TBarApp*>(be_app))->BarView();
|
||||
if (barView != NULL) {
|
||||
BLooper* looper = barView->Looper();
|
||||
if (looper->Lock()) {
|
||||
if (looper != NULL && looper->Lock()) {
|
||||
barView->DragStop();
|
||||
looper->Unlock();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user