Re: [PATCH] net: wan: fix error return code of uhdlc_init()

2021-03-08 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Sun, 7 Mar 2021 01:12:56 -0800 you wrote: > When priv->rx_skbuff or priv->tx_skbuff is NULL, no error return code of > uhdlc_init() is assigned. > To fix this bug, ret is assigned with -ENOMEM in these cases. > >

[PATCH] net: wan: fix error return code of uhdlc_init()

2021-03-07 Thread Jia-Ju Bai
When priv->rx_skbuff or priv->tx_skbuff is NULL, no error return code of uhdlc_init() is assigned. To fix this bug, ret is assigned with -ENOMEM in these cases. Reported-by: TOTE Robot Signed-off-by: Jia-Ju Bai --- drivers/net/wan/fsl_ucc_hdlc.c | 8 ++-- 1 file changed, 6 insertions(+), 2