This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/media_tree.git tree:

Subject: [media] pvrusb2: don't go past buf array
Author:  Mauro Carvalho Chehab <[email protected]>
Date:    Mon Feb 22 13:22:35 2016 -0300

That fixes the following smatch warning:
        drivers/media/usb/pvrusb2/pvrusb2-hdw.c:4909 pvr2_hdw_state_log_state() 
error: buffer overflow 'buf' 256 <= 4294967294

Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/usb/pvrusb2/pvrusb2-hdw.c | 3 +++
 1 file changed, 3 insertions(+)

---

http://git.linuxtv.org/cgit.cgi/media_tree.git/commit/?id=2e158d45fe69b16a0d3d2777e474115fa69eb068
diff --git a/drivers/media/usb/pvrusb2/pvrusb2-hdw.c 
b/drivers/media/usb/pvrusb2/pvrusb2-hdw.c
index 0533ef20decf..1a093e5953fd 100644
--- a/drivers/media/usb/pvrusb2/pvrusb2-hdw.c
+++ b/drivers/media/usb/pvrusb2/pvrusb2-hdw.c
@@ -4903,6 +4903,9 @@ static void pvr2_hdw_state_log_state(struct pvr2_hdw *hdw)
                printk(KERN_INFO "%s %.*s\n",hdw->name,ccnt,buf);
        }
        ccnt = pvr2_hdw_report_clients(hdw, buf, sizeof(buf));
+       if (ccnt >= sizeof(buf))
+               ccnt = sizeof(buf);
+
        ucnt = 0;
        while (ucnt < ccnt) {
                lcnt = 0;

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to