public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] v4l: soc_camera: fix bound checking of mbus_fmt[] index
@ 2010-02-18  6:03 Baruch Siach
  2010-02-19 17:26 ` Guennadi Liakhovetski
  0 siblings, 1 reply; 3+ messages in thread
From: Baruch Siach @ 2010-02-18  6:03 UTC (permalink / raw)
  To: Guennadi Liakhovetski; +Cc: linux-media, Baruch Siach

When code <= V4L2_MBUS_FMT_FIXED soc_mbus_get_fmtdesc returns a pointer to
mbus_fmt[x], where x < 0. Fix this.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 drivers/media/video/soc_mediabus.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/media/video/soc_mediabus.c b/drivers/media/video/soc_mediabus.c
index f8d5c87..a2808e2 100644
--- a/drivers/media/video/soc_mediabus.c
+++ b/drivers/media/video/soc_mediabus.c
@@ -136,6 +136,8 @@ const struct soc_mbus_pixelfmt *soc_mbus_get_fmtdesc(
 {
 	if ((unsigned int)(code - V4L2_MBUS_FMT_FIXED) > ARRAY_SIZE(mbus_fmt))
 		return NULL;
+	if ((unsigned int)code <= V4L2_MBUS_FMT_FIXED)
+		return NULL;
 	return mbus_fmt + code - V4L2_MBUS_FMT_FIXED - 1;
 }
 EXPORT_SYMBOL(soc_mbus_get_fmtdesc);
-- 
1.6.6.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-20 19:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-18  6:03 [PATCH] v4l: soc_camera: fix bound checking of mbus_fmt[] index Baruch Siach
2010-02-19 17:26 ` Guennadi Liakhovetski
2010-02-20 19:01   ` Baruch Siach

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox