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
1 changed files with 2 additions and 4 deletions

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);
_glfw_free(_glfw.wl.clipboardString);
_glfw_free(_glfw.wl.clipboardSendString);
}