Fix potential NPD

This commit is contained in:
project-repo 2020-09-07 13:58:33 +02:00
commit def72ed84a

View file

@ -544,6 +544,9 @@ keybinding_split_output(struct cg_output *output, bool vertical) {
static void
keybinding_close_view(struct cg_view *view) {
if(view == NULL) {
return;
}
view->impl->close(view);
}