diff options
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/decomb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decomb.c b/libhb/decomb.c index 604945819..df1838a7d 100644 --- a/libhb/decomb.c +++ b/libhb/decomb.c @@ -1125,7 +1125,7 @@ hb_filter_private_t * hb_decomb_init( int pix_fmt, int w = ((pv->width[0] + 31) & (~31))>>is_chroma; int h = ((pv->height[0]+6+ 31) & (~31))>>is_chroma; - pv->mask[i] = malloc( w*h*sizeof(uint8_t) ) + 3*w; + pv->mask[i] = calloc( 1, w*h*sizeof(uint8_t) ) + 3*w; } /* |