Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/156#discussion_r178483536
--- Diff: src/protocols/ssh/ssh.c ---
@@ -191,6 +192,10 @@ void* ssh_client_thread(void* data) {
return NULL;
}
+ /* Initialize a ttymode array */
--- End diff --
Point of clarification - nothing is being initialized here, only declared.
With that much being obvious (that the array is being declared), rather than
change "Initialize" to "Declare", I'd say just kill this line.
---