Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7b4c24f authored by David Howells's avatar David Howells Committed by David S. Miller
Browse files

rxrpc: Fix an uninitialised variable



Fix an uninitialised variable introduced by the last patch.  This can cause
a crash when a new call comes in to a local service, such as when an AFS
fileserver calls back to the local cache manager.

Fixes: c1e15b49 ("rxrpc: Fix the packet reception routine")
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4af00f4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -337,7 +337,7 @@ struct rxrpc_call *rxrpc_new_incoming_call(struct rxrpc_local *local,
{
	struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
	struct rxrpc_connection *conn;
	struct rxrpc_peer *peer;
	struct rxrpc_peer *peer = NULL;
	struct rxrpc_call *call;

	_enter("");