mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 02:34:23 +08:00
staging: dwc2: fix potential null pointer access
We were testing hsotg pointer for null after we had already dereferenced it Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Paul Zimmerman <paulz@synopsys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a9b3ea3dbb
commit
ddf58468e0
@ -217,18 +217,18 @@ static void dwc2_update_frame_list(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
|
||||
struct dwc2_host_chan *chan;
|
||||
u16 i, j, inc;
|
||||
|
||||
if (!hsotg) {
|
||||
pr_err("hsotg = %p", hsotg);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!qh->channel) {
|
||||
dev_err(hsotg->dev, "qh->channel = %p", qh->channel);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!hsotg) {
|
||||
dev_err(hsotg->dev, "------hsotg = %p", hsotg);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!hsotg->frame_list) {
|
||||
dev_err(hsotg->dev, "-------hsotg->frame_list = %p",
|
||||
dev_err(hsotg->dev, "hsotg->frame_list = %p",
|
||||
hsotg->frame_list);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user