From patchwork Thu Mar 24 20:07:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jarod Wilson X-Patchwork-Id: 6197 Return-path: Envelope-to: mchehab@pedra Delivery-date: Thu, 24 Mar 2011 17:08:14 -0300 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1Q2qpK-0007Oa-DA for mchehab@pedra; Thu, 24 Mar 2011 17:08:14 -0300 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Thu, 24 Mar 2011 17:08:14 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1Q2qoI-0004fq-PK; Thu, 24 Mar 2011 20:07:11 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755227Ab1CXUHI (ORCPT + 1 other); Thu, 24 Mar 2011 16:07:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:15824 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752716Ab1CXUHG (ORCPT ); Thu, 24 Mar 2011 16:07:06 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p2OK74of022741 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 24 Mar 2011 16:07:04 -0400 Received: from xavier.bos.redhat.com (xavier.bos.redhat.com [10.16.16.50]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p2OK73Pr032463; Thu, 24 Mar 2011 16:07:04 -0400 From: Jarod Wilson To: linux-media@vger.kernel.org Cc: Jarod Wilson , devel@driverdev.osuosl.org Subject: [PATCH] tm6000: fix vbuf may be used uninitialized Date: Thu, 24 Mar 2011 16:07:00 -0400 Message-Id: <1300997220-4354-1-git-send-email-jarod@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: Signed-off-by: Jarod Wilson CC: devel@driverdev.osuosl.org --- drivers/staging/tm6000/tm6000-video.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-video.c b/drivers/staging/tm6000/tm6000-video.c index c80a316..bfebedd 100644 --- a/drivers/staging/tm6000/tm6000-video.c +++ b/drivers/staging/tm6000/tm6000-video.c @@ -228,7 +228,7 @@ static int copy_streams(u8 *data, unsigned long len, unsigned long header = 0; int rc = 0; unsigned int cmd, cpysize, pktsize, size, field, block, line, pos = 0; - struct tm6000_buffer *vbuf; + struct tm6000_buffer *vbuf = NULL; char *voutp = NULL; unsigned int linewidth;