diff options
author | Dan Carpenter <error27@gmail.com> | 2022-11-17 10:44:02 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-11-18 12:03:01 +0000 |
commit | 38461894838bbbebab54cbd5a5459cc8d1b6dd9b (patch) | |
tree | 619a94a7f242968522c99acc102ddd3a056e533a /net | |
parent | 101c1bb6c55691d01c73915c118828f7ca17a049 (diff) | |
download | linux-38461894838bbbebab54cbd5a5459cc8d1b6dd9b.tar.bz2 |
rxrpc: uninitialized variable in rxrpc_send_ack_packet()
The "pkt" was supposed to have been deleted in a previous patch. It
leads to an uninitialized variable bug.
Fixes: 72f0c6fb0579 ("rxrpc: Allocate ACK records at proposal and queue for transmission")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/rxrpc/output.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/rxrpc/output.c b/net/rxrpc/output.c index 46432e70a16b..04f945e042ab 100644 --- a/net/rxrpc/output.c +++ b/net/rxrpc/output.c @@ -202,7 +202,6 @@ static void rxrpc_cancel_rtt_probe(struct rxrpc_call *call, static int rxrpc_send_ack_packet(struct rxrpc_local *local, struct rxrpc_txbuf *txb) { struct rxrpc_connection *conn; - struct rxrpc_ack_buffer *pkt; struct rxrpc_call *call = txb->call; struct msghdr msg; struct kvec iov[1]; @@ -270,7 +269,6 @@ static int rxrpc_send_ack_packet(struct rxrpc_local *local, struct rxrpc_txbuf * rxrpc_set_keepalive(call); } - kfree(pkt); return ret; } |