[client] wayland: fix possible memory leak

This commit is contained in:
Geoffrey McRae 2021-09-11 10:03:27 +10:00
parent 5fbb34f8f3
commit 3adb7ca4b2

View File

@ -162,6 +162,7 @@ void waylandOutputBind(uint32_t name, uint32_t version)
if (version < 2)
{
DEBUG_WARN("wl_output version too old: expected >= 2, got %d", version);
free(node);
return;
}
@ -217,4 +218,3 @@ wl_fixed_t waylandOutputGetScale(struct wl_output * output)
return node->scale;
return 0;
}