shithub: libvpx

Download patch

ref: 27bce6c5dca72f2686a7c0b9d4db2a4c582d75f0
parent: f356b740ff787a1891b8122b26c171d567217fd0
parent: 540997afba223a1b9368cbdc3e4e0ff1003d1e37
author: James Zern <jzern@google.com>
date: Fri Feb 22 07:32:07 EST 2013

Merge "sixtap_predict_test: fix sizes passed to memset"

--- a/test/sixtap_predict_test.cc
+++ b/test/sixtap_predict_test.cc
@@ -61,9 +61,9 @@
     width_ = GET_PARAM(0);
     height_ = GET_PARAM(1);
     sixtap_predict_ = GET_PARAM(2);
-    memset(src_, 0, sizeof(src_));
-    memset(dst_, 0, sizeof(dst_));
-    memset(dst_c_, 0, sizeof(dst_c_));
+    memset(src_, 0, kSrcSize);
+    memset(dst_, 0, kDstSize);
+    memset(dst_c_, 0, kDstSize);
   }
 
   int width_;