Skip to content

Commit

Permalink
decavcodec: fix potential use of uninitialized variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jstebbins committed Jan 5, 2019
1 parent 7aa3bea commit 3c95342
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libhb/decavcodec.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,8 @@ static int decavcodecaWork( hb_work_object_t * w, hb_buffer_t ** buf_in,
}
for (pos = 0; pos < in->size; pos += len)
{
uint8_t * pout;
int pout_len;
uint8_t * pout = NULL;
int pout_len = 0;
int64_t parser_pts;

if ( pv->parser != NULL )
Expand Down

0 comments on commit 3c95342

Please sign in to comment.