Skip to content

Commit

Permalink
Merge 1.5.5 changes back to master.
Browse files Browse the repository at this point in the history
  • Loading branch information
necouchman committed Jan 18, 2024
2 parents 28d9707 + eecb99b commit c9664bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/protocols/vnc/cursor.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ void guac_vnc_cursor(rfbClient* client, int x, int y, int w, int h, int bpp) {
guac_mem_free(buffer);

/* libvncclient does not free rcMask as it does rcSource */
free(client->rcMask);
if (client->rcMask != NULL) {
free(client->rcMask);
client->rcMask = NULL;
}
}

0 comments on commit c9664bc

Please sign in to comment.