mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-22 13:52:57 +00:00
[client] wayland: fix possible memory leak
This commit is contained in:
parent
5fbb34f8f3
commit
3adb7ca4b2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue