We were testing qtd->urb pointer for null after we had already
dereferenced it

Reported-by: Dan Carpenter <dan.carpen...@oracle.com>
Signed-off-by: Paul Zimmerman <pa...@synopsys.com>
---
 drivers/staging/dwc2/hcd_intr.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/dwc2/hcd_intr.c b/drivers/staging/dwc2/hcd_intr.c
index a8d8c53..6e5dbed 100644
--- a/drivers/staging/dwc2/hcd_intr.c
+++ b/drivers/staging/dwc2/hcd_intr.c
@@ -1377,13 +1377,12 @@ static void dwc2_hc_nyet_intr(struct dwc2_hsotg *hsotg,
                    hsotg->core_params->dma_enable > 0) {
                        qtd->complete_split = 0;
                        qtd->isoc_split_offset = 0;
-                       if (++qtd->isoc_frame_index == qtd->urb->packet_count) {
-                               if (qtd->urb)
-                                       dwc2_host_complete(hsotg,
-                                                          qtd->urb->priv,
-                                                          qtd->urb, 0);
+                       if (qtd->urb &&
+                           ++qtd->isoc_frame_index == qtd->urb->packet_count) {
+                               dwc2_host_complete(hsotg, qtd->urb->priv,
+                                                  qtd->urb, 0);
                                dwc2_release_channel(hsotg, chan, qtd,
-                                               DWC2_HC_XFER_URB_COMPLETE);
+                                                    DWC2_HC_XFER_URB_COMPLETE);
                        } else {
                                dwc2_release_channel(hsotg, chan, qtd,
                                                DWC2_HC_XFER_NO_HALT_STATUS);
-- 
1.8.2.rc0.16.g20a599e

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to