[PATCH] usb: pwc-if loop fix

From: Mariusz Kozlowski
Date: Thu Nov 16 2006 - 10:39:24 EST


Hello,

We should free urbs starting at [i-1] not [i].

Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx>

drivers/media/video/pwc/pwc-if.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff -upr linux-2.6.19-rc5-mm2-a/drivers/media/video/pwc/pwc-if.c linux-2.6.19-rc5-mm2-b/drivers/media/video/pwc/pwc-if.c
--- linux-2.6.19-rc5-mm2-a/drivers/media/video/pwc/pwc-if.c 2006-11-15 11:24:20.000000000 +0100
+++ linux-2.6.19-rc5-mm2-b/drivers/media/video/pwc/pwc-if.c 2006-11-15 21:08:07.000000000 +0100
@@ -866,10 +866,9 @@ int pwc_isoc_init(struct pwc_device *pde
}
if (ret) {
/* De-allocate in reverse order */
- while (i >= 0) {
+ while (i--) {
usb_free_urb(pdev->sbuf[i].urb);
pdev->sbuf[i].urb = NULL;
- i--;
}
return ret;
}

--
Regards,

Mariusz Kozlowski
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/