Browse Source

avcodec/huffyuvenc: fail if stats_out is too small instead of silently truncating

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 11 years ago
parent
commit
a301bb63f0
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/huffyuvenc.c

+ 2
- 0
libavcodec/huffyuvenc.c View File

@@ -947,6 +947,8 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
}
snprintf(p, end-p, "\n");
p++;
if (end <= p)
return AVERROR(ENOMEM);
}
} else
avctx->stats_out[0] = '\0';


Loading…
Cancel
Save