Commit 27bce6c5 authored by James Zern's avatar James Zern Committed by Gerrit Code Review
Browse files

Merge "sixtap_predict_test: fix sizes passed to memset"

Showing with 3 additions and 3 deletions
...@@ -61,9 +61,9 @@ class SixtapPredictTest : public PARAMS(int, int, sixtap_predict_fn_t) { ...@@ -61,9 +61,9 @@ class SixtapPredictTest : public PARAMS(int, int, sixtap_predict_fn_t) {
width_ = GET_PARAM(0); width_ = GET_PARAM(0);
height_ = GET_PARAM(1); height_ = GET_PARAM(1);
sixtap_predict_ = GET_PARAM(2); sixtap_predict_ = GET_PARAM(2);
memset(src_, 0, sizeof(src_)); memset(src_, 0, kSrcSize);
memset(dst_, 0, sizeof(dst_)); memset(dst_, 0, kDstSize);
memset(dst_c_, 0, sizeof(dst_c_)); memset(dst_c_, 0, kDstSize);
} }
int width_; int width_;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment