Skip to content
Snippets Groups Projects
Commit 3bd03018 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Move sftp_state inside ssh_mutex.

This won't matter now since only one thread ever touches it, but
when cool stuff happens, it could.
parent 03d9ad7d
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -457,11 +457,13 @@ key_not_present(sftp_filehandle_t f, const char *priv)
bufsz += 4096;
}
if (!sftpc_read(sftp_state, f, off, (bufsz - bufpos > 1024) ? 1024 : bufsz - bufpos, &r)) {
free(buf);
pthread_mutex_lock(&ssh_mutex);
if (sftp_state->err_code == SSH_FX_EOF) {
free(buf);
pthread_mutex_unlock(&ssh_mutex);
return true;
}
free(buf);
pthread_mutex_unlock(&ssh_mutex);
return false;
}
memcpy(&buf[bufpos], r->c_str, r->len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment