Browse Source

avformat/riffenc: Use size_t for strlen in ff_riff_write_info_tag()

Also dont generated corrupted output for larger than 4gb strings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
c3671e1d57
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/riffenc.c

+ 2
- 2
libavformat/riffenc.c View File

@@ -269,8 +269,8 @@ void ff_parse_specific_params(AVStream *st, int *au_rate,

void ff_riff_write_info_tag(AVIOContext *pb, const char *tag, const char *str)
{
int len = strlen(str);
if (len > 0) {
size_t len = strlen(str);
if (len > 0 && len < UINT32_MAX) {
len++;
ffio_wfourcc(pb, tag);
avio_wl32(pb, len);


Loading…
Cancel
Save