Merge 1.3.0 changes back to master.

This commit is contained in:
Nick Couchman 2020-10-30 10:13:25 -04:00
commit 7563402631

View File

@ -366,7 +366,9 @@ static UINT guac_rdp_cliprdr_format_data_request(CliprdrClientContext* cliprdr,
guac_client_log(clipboard->client, GUAC_LOG_TRACE, "CLIPRDR: Sending " guac_client_log(clipboard->client, GUAC_LOG_TRACE, "CLIPRDR: Sending "
"format data response."); "format data response.");
return cliprdr->ClientFormatDataResponse(cliprdr, &data_response); UINT result = cliprdr->ClientFormatDataResponse(cliprdr, &data_response);
free(start);
return result;
} }