1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-22 18:28:52 -05:00

Wayland: Remove unnecessary NULL checks

It is fine to pass NULL to _glfw_free.
This commit is contained in:
Camilla Löwy 2022-02-11 12:40:21 +01:00
parent a28adba06a
commit 4a68926bfd

View File

@ -1461,9 +1461,7 @@ void _glfwTerminateWayland(void)
if (_glfw.wl.cursorTimerfd >= 0)
close(_glfw.wl.cursorTimerfd);
if (_glfw.wl.clipboardString)
_glfw_free(_glfw.wl.clipboardString);
if (_glfw.wl.clipboardSendString)
_glfw_free(_glfw.wl.clipboardSendString);
}