Wayland: Cleanup

This commit is contained in:
Camilla Löwy 2024-04-12 18:25:19 +02:00
parent 64906f8e64
commit b35641f4a3

View File

@ -2042,15 +2042,17 @@ static void dataDeviceHandleDrop(void* userData,
int count; int count;
char** paths = _glfwParseUriList(string, &count); char** paths = _glfwParseUriList(string, &count);
if (paths) if (paths)
{
_glfwInputDrop(_glfw.wl.dragFocus, count, (const char**) paths); _glfwInputDrop(_glfw.wl.dragFocus, count, (const char**) paths);
for (int i = 0; i < count; i++) for (int i = 0; i < count; i++)
_glfw_free(paths[i]); _glfw_free(paths[i]);
_glfw_free(paths); _glfw_free(paths);
}
_glfw_free(string);
} }
_glfw_free(string);
} }
static void dataDeviceHandleSelection(void* userData, static void dataDeviceHandleSelection(void* userData,