necouchman commented on code in PR #450: URL: https://github.com/apache/guacamole-server/pull/450#discussion_r1258933198
########## src/common-ssh/user.c: ########## @@ -80,3 +82,15 @@ int guac_common_ssh_user_import_key(guac_common_ssh_user* user, } +int guac_common_ssh_user_import_public_key(guac_common_ssh_user* user, + char* public_key) { + + /* Free existing public key, if present */ + free(user->public_key); Review Comment: Okay, then it's probably fine as-is. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org