mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/channel_layout: Account for \0 in sizes
av_channel_name(), av_channel_description() and av_channel_layout_describe() are supposed to return the size of the needed buffer to allow the user to check for truncation; the documentation ("If the returned value is bigger than buf_size, then the string was truncated.") confirms that size does not mean strlen. Yet the AVBPrint API, i.e. AVBPrint.len, does not account for the terminating '\0'. Therefore the returned length is off by one. Furthermore, also check for whether the returned value actually fits in an int (which is the return value of these functions). Reviewed-by: Nicolas George <george@nsup.org> Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
8bea4a83aa
commit
c4f35ba808
|
@ -108,7 +108,9 @@ int av_channel_name(char *buf, size_t buf_size, enum AVChannel channel_id)
|
|||
av_bprint_init_for_buffer(&bp, buf, buf_size);
|
||||
av_channel_name_bprint(&bp, channel_id);
|
||||
|
||||
return bp.len;
|
||||
if (bp.len >= INT_MAX)
|
||||
return AVERROR(ERANGE);
|
||||
return bp.len + 1;
|
||||
}
|
||||
|
||||
void av_channel_description_bprint(AVBPrint *bp, enum AVChannel channel_id)
|
||||
|
@ -135,7 +137,9 @@ int av_channel_description(char *buf, size_t buf_size, enum AVChannel channel_id
|
|||
av_bprint_init_for_buffer(&bp, buf, buf_size);
|
||||
av_channel_description_bprint(&bp, channel_id);
|
||||
|
||||
return bp.len;
|
||||
if (bp.len >= INT_MAX)
|
||||
return AVERROR(ERANGE);
|
||||
return bp.len + 1;
|
||||
}
|
||||
|
||||
enum AVChannel av_channel_from_string(const char *str)
|
||||
|
@ -789,7 +793,9 @@ int av_channel_layout_describe(const AVChannelLayout *channel_layout,
|
|||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return bp.len;
|
||||
if (bp.len >= INT_MAX)
|
||||
return AVERROR(ERANGE);
|
||||
return bp.len + 1;
|
||||
}
|
||||
|
||||
enum AVChannel
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
#define LIBAVUTIL_VERSION_MAJOR 58
|
||||
#define LIBAVUTIL_VERSION_MINOR 16
|
||||
#define LIBAVUTIL_VERSION_MICRO 100
|
||||
#define LIBAVUTIL_VERSION_MICRO 101
|
||||
|
||||
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
||||
LIBAVUTIL_VERSION_MINOR, \
|
||||
|
|
Loading…
Reference in New Issue