mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
V4L/DVB: gspca - ov534: Fix end of frame handling
Fix a regression, introduced in the driver split, which made the ov534 driver unusable. Plus, the debug message should reflect that we discard also packets beyond the expected frame size. Signed-off-by: Antonio Ospite <ospite@studenti.unina.it> Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
29b87f0455
commit
11edebc264
@ -992,9 +992,9 @@ static void sd_pkt_scan(struct gspca_dev *gspca_dev,
|
||||
frame = gspca_get_i_frame(gspca_dev);
|
||||
if (frame == NULL)
|
||||
goto discard;
|
||||
if (frame->data_end - frame->data !=
|
||||
if (frame->data_end - frame->data + (len - 12) !=
|
||||
gspca_dev->width * gspca_dev->height * 2) {
|
||||
PDEBUG(D_PACK, "short frame");
|
||||
PDEBUG(D_PACK, "wrong sized frame");
|
||||
goto discard;
|
||||
}
|
||||
gspca_frame_add(gspca_dev, LAST_PACKET,
|
||||
|
Loading…
Reference in New Issue
Block a user