From: Dan Carpenter <dan.carpenter@oracle.com>
To: xkernel.wang@foxmail.com
Cc: gregkh@linuxfoundation.org, Larry.Finger@lwfinger.net,
florian.c.schilhabel@googlemail.com,
linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] staging: rtl8712: fix potential memory leak in r8712_init_drv_sw()
Date: Fri, 1 Apr 2022 12:42:48 +0300 [thread overview]
Message-ID: <20220401094248.GT3293@kadam> (raw)
In-Reply-To: <tencent_F3B552EEBF1CC810B36CEE23070BC54BF806@qq.com>
On Fri, Apr 01, 2022 at 01:08:19AM +0800, xkernel.wang@foxmail.com wrote:
> ret = _r8712_init_sta_priv(&padapter->stapriv);
> if (ret)
> - return ret;
> + goto free_recv_priv;
> padapter->stapriv.padapter = padapter;
> r8712_init_bcmc_stainfo(padapter);
> r8712_init_pwrctrl_priv(padapter);
> @@ -328,6 +328,18 @@ int r8712_init_drv_sw(struct _adapter *padapter)
> init_default_value(padapter);
> r8712_InitSwLeds(padapter);
> return ret;
Not related to the patch. (You didn't introduce this, so it's not
something you need to fix.) But this "return ret;" would be better if
it were "return 0;"
regards,
dan carpenter
> +
> +free_recv_priv:
> + _r8712_free_recv_priv(&padapter->recvpriv);
> +free_xmit_priv:
> + _free_xmit_priv(&padapter->xmitpriv);
> +free_mlme_priv:
> + r8712_free_mlme_priv(&padapter->mlmepriv);
> +free_evt_priv:
> + r8712_free_evt_priv(&padapter->evtpriv);
> +free_cmd_priv:
> + r8712_free_cmd_priv(&padapter->cmdpriv);
> + return ret;
> }
next prev parent reply other threads:[~2022-04-01 9:43 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-31 17:06 [PATCH 1/3] staging: rtl8712: change the type of _r8712_init_recv_priv() xkernel.wang
2022-03-31 17:07 ` [PATCH 2/3] staging: rtl8712: add two validation check in r8712_init_drv_sw() xkernel.wang
2022-04-04 14:29 ` Greg KH
2022-04-05 1:10 ` xkernel.wang
2022-03-31 17:08 ` [PATCH 3/3] staging: rtl8712: fix potential memory leak " xkernel.wang
2022-04-01 9:42 ` Dan Carpenter [this message]
2022-04-04 14:30 ` [PATCH 1/3] staging: rtl8712: change the type of _r8712_init_recv_priv() Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220401094248.GT3293@kadam \
--to=dan.carpenter@oracle.com \
--cc=Larry.Finger@lwfinger.net \
--cc=florian.c.schilhabel@googlemail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=xkernel.wang@foxmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).