You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/matroskadec: Reindent after the previous commit
Reviewed-by: Ridley Combs <rcombs@rcombs.me> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
@@ -1007,7 +1007,7 @@ static int ebml_read_ascii(AVIOContext *pb, int size,
|
|||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
} else {
|
} else {
|
||||||
/* EBML strings are usually not 0-terminated, so we allocate one
|
/* EBML strings are usually not 0-terminated, so we allocate one
|
||||||
* byte more, read the string and NULL-terminate it ourselves. */
|
* byte more, read the string and NUL-terminate it ourselves. */
|
||||||
if (!(res = av_malloc(size + 1)))
|
if (!(res = av_malloc(size + 1)))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
if ((ret = avio_read(pb, (uint8_t *) res, size)) != size) {
|
if ((ret = avio_read(pb, (uint8_t *) res, size)) != size) {
|
||||||
|
Reference in New Issue
Block a user