1
1

sftp: Check for NULL path and give correct error

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Andreas Schneider 2017-11-09 11:41:58 +01:00
родитель 01994ea302
Коммит f525fdb2e1

Просмотреть файл

@ -3088,6 +3088,11 @@ static sftp_attributes sftp_xstat(sftp_session sftp, const char *path,
ssh_buffer buffer;
uint32_t id;
if (path == NULL) {
ssh_set_error_invalid(sftp->session);
return NULL;
}
buffer = ssh_buffer_new();
if (buffer == NULL) {
ssh_set_error_oom(sftp->session);