Fail if the driver returns unrealistically large frame sizes.

Signed-off-by: Philipp Zabel <p.za...@pengutronix.de>
---
 utils/v4l2-compliance/v4l2-test-subdevs.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utils/v4l2-compliance/v4l2-test-subdevs.cpp 
b/utils/v4l2-compliance/v4l2-test-subdevs.cpp
index 031fd6e78c56..29987b310448 100644
--- a/utils/v4l2-compliance/v4l2-test-subdevs.cpp
+++ b/utils/v4l2-compliance/v4l2-test-subdevs.cpp
@@ -308,8 +308,8 @@ int testSubDevFrameInterval(struct node *node, unsigned pad)
 static int checkMBusFrameFmt(struct node *node, struct v4l2_mbus_framefmt &fmt)
 {
        fail_on_test(check_0(fmt.reserved, sizeof(fmt.reserved)));
-       fail_on_test(fmt.width == 0 || fmt.width == ~0U);
-       fail_on_test(fmt.height == 0 || fmt.height == ~0U);
+       fail_on_test(fmt.width == 0 || fmt.width > 65536);
+       fail_on_test(fmt.height == 0 || fmt.height > 65536);
        fail_on_test(fmt.code == 0 || fmt.code == ~0U);
        fail_on_test(fmt.field == ~0U);
        if (!node->is_passthrough_subdev) {
-- 
2.19.1

Reply via email to