um: fix error return code in slip_open()
authorZhen Lei <thunder.leizhen@huawei.com>
Sat, 8 May 2021 03:13:54 +0000 (11:13 +0800)
committerRichard Weinberger <richard@nod.at>
Thu, 17 Jun 2021 20:10:05 +0000 (22:10 +0200)
Fix to return a negative error code from the error handling case instead
of 0, as done elsewhere in this function.

Fixes: a3c77c67a443 ("[PATCH] uml: slirp and slip driver cleanups and fixes")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Acked-By: anton.ivanov@cambridgegreys.com
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/drivers/slip_user.c

index 482a19c5105c5c3780642bc335d542c96fbd6997..7334019c9e60a2239b922757888b022891b9dca0 100644 (file)
@@ -145,7 +145,8 @@ static int slip_open(void *data)
        }
        sfd = err;
 
-       if (set_up_tty(sfd))
+       err = set_up_tty(sfd);
+       if (err)
                goto out_close2;
 
        pri->slave = sfd;