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

This commit is contained in:
Alex Wilson
2011-10-28 14:16:34 -06:00
parent 90e615679c
commit f87e4c7302
+2 -1
View File
@@ -47,7 +47,8 @@ namespace {
struct ViewRemover { struct ViewRemover {
inline void operator()(BView* view) { inline void operator()(BView* view) {
BView::Private(view).RemoveSelf(); if (view)
BView::Private(view).RemoveSelf();
} }
}; };
} }