[client,x11] fix memory leak in clipboard

This commit is contained in:
akallabeth 2024-10-08 11:02:59 +02:00
parent 99b5d2298b
commit 4c034ac36f
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5

View File

@ -172,6 +172,7 @@ static void requested_format_free(RequestedFormat** ppRequestedFormat)
return;
free((*ppRequestedFormat)->formatName);
free(*ppRequestedFormat);
*ppRequestedFormat = NULL;
}