1
1

messages: Fix a possible null pointer dereference.

Этот коммит содержится в:
Andreas Schneider 2012-10-05 10:42:28 +02:00
родитель 61d032fc03
Коммит 8567fc8d8c

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

@ -1268,6 +1268,9 @@ SSH_PACKET_CALLBACK(ssh_packet_global_request){
ssh_log(session,SSH_LOG_PROTOCOL,"Received SSH_MSG_GLOBAL_REQUEST packet");
msg = ssh_message_new(session);
if (msg == NULL) {
return SSH_PACKET_NOT_USED;
}
msg->type = SSH_REQUEST_GLOBAL;
if (request && strcmp(request, "tcpip-forward") == 0) {