mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-11 02:38:09 +09:00
sftpserver: Add missing break statement.
Found by Coverity.
This commit is contained in:
@@ -216,6 +216,7 @@ sftp_client_message sftp_get_client_message(sftp_session sftp) {
|
|||||||
sftp_client_message_free(msg);
|
sftp_client_message_free(msg);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case SSH_FXP_FSTAT:
|
case SSH_FXP_FSTAT:
|
||||||
msg->handle = buffer_get_ssh_string(payload);
|
msg->handle = buffer_get_ssh_string(payload);
|
||||||
if (msg->handle == NULL) {
|
if (msg->handle == NULL) {
|
||||||
|
|||||||
Reference in New Issue
Block a user