GUACAMOLE-876: Test for open files only if filesystem has been allocated.

This commit is contained in:
Michael Jumper 2022-02-18 13:40:15 -08:00
parent 29535e6cb8
commit 06461cac53

View File

@ -281,7 +281,8 @@ int guac_rdp_disp_reconnect_needed(guac_rdp_disp* disp) {
guac_rdp_client* rdp_client = (guac_rdp_client*) disp->client->data;
/* Do not reconnect if files are open. */
if (rdp_client->filesystem->open_files > 0)
if (rdp_client->filesystem != NULL
&& rdp_client->filesystem->open_files > 0)
return 0;
/* Do not reconnect if an active print job is present */