Fix bug in Layout.cpp's ViewRemover struct. operator() didn't deal well with NULLs.
This commit is contained in:
parent
90e615679c
commit
f87e4c7302
@ -47,7 +47,8 @@ namespace {
|
||||
|
||||
struct ViewRemover {
|
||||
inline void operator()(BView* view) {
|
||||
BView::Private(view).RemoveSelf();
|
||||
if (view)
|
||||
BView::Private(view).RemoveSelf();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user