Wayland: Remove unnecessary NULL checks

It is fine to pass NULL to _glfw_free.
master
Camilla Löwy ago%!(EXTRA string=3 years)
parent a28adba06a
commit 4a68926bfd
  1. 6
      src/wl_init.c

@ -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);
}

Loading…
Cancel
Save