You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-06 06:27:36 +02:00
avformat/dss: Use AV_DICT_DONT_STRDUP_VAL to save a malloc+memcpy
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
@ -103,15 +103,11 @@ static int dss_read_metadata_string(AVFormatContext *s, unsigned int offset,
|
|||||||
|
|
||||||
ret = avio_read(s->pb, value, size);
|
ret = avio_read(s->pb, value, size);
|
||||||
if (ret < size) {
|
if (ret < size) {
|
||||||
ret = ret < 0 ? ret : AVERROR_EOF;
|
av_free(value);
|
||||||
goto exit;
|
return ret < 0 ? ret : AVERROR_EOF;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = av_dict_set(&s->metadata, key, value, 0);
|
return av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
|
||||||
|
|
||||||
exit:
|
|
||||||
av_free(value);
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int dss_read_header(AVFormatContext *s)
|
static int dss_read_header(AVFormatContext *s)
|
||||||
|
Reference in New Issue
Block a user