Merge pull request #716 from Hummer12007/patch-1

Added a null check in tabbed_stacked_parent
This commit is contained in:
Drew DeVault 2016-06-18 13:45:39 -04:00 committed by GitHub
commit cdb6a9e948

View File

@ -853,12 +853,12 @@ swayc_t *swayc_tabbed_stacked_parent(swayc_t *view) {
if (!ASSERT_NONNULL(view)) { if (!ASSERT_NONNULL(view)) {
return NULL; return NULL;
} }
do { while (view->type != C_WORKSPACE && view->parent) {
view = view->parent; view = view->parent;
if (view->layout == L_TABBED || view->layout == L_STACKED) { if (view->layout == L_TABBED || view->layout == L_STACKED) {
parent = view; parent = view;
} }
} while (view && view->type != C_WORKSPACE); }
return parent; return parent;
} }