Wayland: Remove check for error that cannot happen

Famous last words.

(cherry picked from commit 967282c2e6)
This commit is contained in:
Camilla Löwy 2022-03-24 21:24:34 +01:00
parent 9e852ec39e
commit c0c0d172a1

View File

@ -1734,14 +1734,6 @@ static void dataSourceHandleSend(void* userData,
}
char* string = _glfw.wl.clipboardString;
if (!string)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Wayland: Copy requested from an invalid string");
close(fd);
return;
}
size_t length = strlen(string);
while (length > 0)