GUAC-1164: Add missing free() for client connection ID.

This commit is contained in:
Michael Jumper 2016-03-17 16:03:58 -07:00
parent 176ff96a26
commit 8c37db8a07

View File

@ -482,6 +482,7 @@ void guac_client_free(guac_client* client) {
}
pthread_rwlock_destroy(&(client->__users_lock));
free(client->connection_id);
free(client);
}