shithub: libvpx

Download patch

ref: 0405cd8e9f015726b3c94509035269219ecd316e
parent: 6247b239bca25cadb5fb16b1bc6f4c77e764c4ff
author: Yaowu Xu <yaowu@google.com>
date: Mon Dec 17 06:10:16 EST 2012

fixed a warning

where variable is used without initialization

Change-Id: Ic6b52623802641060cad4a72271050aeaf20ad5c

--- a/vp9/common/vp9_mbpitch.c
+++ b/vp9/common/vp9_mbpitch.c
@@ -45,7 +45,7 @@
   int block;
 
   unsigned char **y, **u, **v;
-  unsigned char **y2, **u2, **v2;
+  unsigned char **y2 = NULL, **u2 = NULL, **v2 = NULL;
   BLOCKD *blockd = xd->block;
   int stride;