[client] clipboard/wayland: fix null mimetype receive error

This prevents looking-glass-client from failing with an error message like:

error marshalling arguments for receive (signature sh): null value passed for arg 0
Error marshalling request: Invalid argument
This commit is contained in:
Quantum 2021-01-13 14:42:11 -05:00 committed by Geoffrey McRae
parent 50c934db5a
commit 02421ef269

View File

@ -200,6 +200,7 @@ static const struct wl_data_offer_listener dataOfferListener = {
static void dataDeviceHandleDataOffer(void * data,
struct wl_data_device * dataDevice, struct wl_data_offer * offer)
{
this->stashedType = LG_CLIPBOARD_DATA_NONE;
wl_data_offer_add_listener(offer, &dataOfferListener, NULL);
}