From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-bw0-f217.google.com ([209.85.218.217]:39349 "EHLO mail-bw0-f217.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932371Ab0DBLiw (ORCPT ); Fri, 2 Apr 2010 07:38:52 -0400 Date: Fri, 2 Apr 2010 14:31:50 +0300 From: Dan Carpenter To: Mauro Carvalho Chehab Cc: Hans Verkuil , Laurent Pinchart , Andrew Morton , Devin Heitmueller , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: [patch] cx88: improve error handling Message-ID: <20100402113150.GL5265@bicker> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: linux-media-owner@vger.kernel.org List-ID: Return -EINVAL if we don't find the right query control id. Signed-off-by: Dan Carpenter diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index 48c450f..b4c80cb 100644 --- a/drivers/media/video/cx88/cx88-video.c +++ b/drivers/media/video/cx88/cx88-video.c @@ -1537,9 +1537,12 @@ static int radio_queryctrl (struct file *file, void *priv, c->id >= V4L2_CID_LASTP1) return -EINVAL; if (c->id == V4L2_CID_AUDIO_MUTE) { - for (i = 0; i < CX8800_CTLS; i++) + for (i = 0; i < CX8800_CTLS; i++) { if (cx8800_ctls[i].v.id == c->id) break; + } + if (i == CX8800_CTLS) + return -EINVAL; *c = cx8800_ctls[i].v; } else *c = no_ctl;