Fix bug in Layout.cpp's ViewRemover struct. operator() didn't deal well with NULLs.

This commit is contained in:
Alex Wilson 2011-10-16 21:53:46 -06:00
parent 90e615679c
commit f87e4c7302

View File

@ -47,7 +47,8 @@ namespace {
struct ViewRemover {
inline void operator()(BView* view) {
BView::Private(view).RemoveSelf();
if (view)
BView::Private(view).RemoveSelf();
}
};
}