Commit 91853075 authored by Nikos Mavrogiannopoulos's avatar Nikos Mavrogiannopoulos
Browse files

libssh: fixed dereference in statvfs access

The behavior is now equivalent to ssh.c when SSH_SFTP_QUOTE_STATVFS
handling fails.

Fixes #2142
parent 8dad32bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -998,7 +998,7 @@ static CURLcode myssh_statemach_act(struct connectdata *conn, bool *block)
        sshc->actualcode = CURLE_QUOTE_ERROR;
        break;
      }
      else {
      else if (statvfs) {
        char *tmp = aprintf("statvfs:\n"
                            "f_bsize: %llu\n" "f_frsize: %llu\n"
                            "f_blocks: %llu\n" "f_bfree: %llu\n"