Browse Source

[AF_RXRPC]: Add a missing goto

Add a missing goto to error handling in the RXKAD security module for
AF_RXRPC.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
David Howells 17 years ago
parent
commit
4aa9cb320e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      net/rxrpc/rxkad.c

+ 1 - 0
net/rxrpc/rxkad.c

@@ -1021,6 +1021,7 @@ static int rxkad_verify_response(struct rxrpc_connection *conn,
 
 
 	abort_code = RXKADINCONSISTENCY;
 	abort_code = RXKADINCONSISTENCY;
 	if (version != RXKAD_VERSION)
 	if (version != RXKAD_VERSION)
+		goto protocol_error;
 
 
 	abort_code = RXKADTICKETLEN;
 	abort_code = RXKADTICKETLEN;
 	if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN)
 	if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN)