From: YueHaibing Date: Tue, 30 Apr 2019 11:34:08 +0000 (+0800) Subject: appletalk: Set error code if register_snap_client failed X-Git-Tag: v3.16.79~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77251fec285eebe2258e81e643820428b92a68a6;p=thirdparty%2Fkernel%2Fstable.git appletalk: Set error code if register_snap_client failed commit c93ad1337ad06a718890a89cdd85188ff9a5a5cc upstream. If register_snap_client fails in atalk_init, error code should be set, otherwise it will triggers NULL pointer dereference while unloading module. Fixes: 9804501fa122 ("appletalk: Fix potential NULL pointer dereference in unregister_snap_client") Signed-off-by: YueHaibing Signed-off-by: David S. Miller Signed-off-by: Ben Hutchings --- diff --git a/net/appletalk/ddp.c b/net/appletalk/ddp.c index 24bedf50c1538..c91946ef21806 100644 --- a/net/appletalk/ddp.c +++ b/net/appletalk/ddp.c @@ -1928,6 +1928,7 @@ static int __init atalk_init(void) ddp_dl = register_snap_client(ddp_snap_id, atalk_rcv); if (!ddp_dl) { pr_crit("Unable to register DDP with SNAP.\n"); + rc = -ENOMEM; goto out_sock; }