Github user mike-jumper commented on a diff in the pull request:

    https://github.com/apache/guacamole-server/pull/201#discussion_r232503753
  
    --- Diff: src/common-ssh/ssh.c ---
    @@ -321,6 +321,10 @@ static int 
guac_common_ssh_authenticate(guac_common_ssh_session* common_session)
         guac_client_log(client, GUAC_LOG_DEBUG,
                 "Supported authentication methods: %s", user_authlist);
     
    +    /* If auth list is NULL, then authentication has succeeded with NONE */
    +    if (user_authlist == NULL)
    --- End diff --
    
    If `user_authlist` is `NULL`, what happens to that `guac_client_log()` call 
above that tries to print the value?


---

Reply via email to