dict.c: minor simplification.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
fcb11ec291
commit
f0de01856f
@ -90,10 +90,9 @@ int av_dict_set(AVDictionary **pm, const char *key, const char *value,
|
|||||||
} else {
|
} else {
|
||||||
AVDictionaryEntry *tmp = av_realloc(m->elems,
|
AVDictionaryEntry *tmp = av_realloc(m->elems,
|
||||||
(m->count + 1) * sizeof(*m->elems));
|
(m->count + 1) * sizeof(*m->elems));
|
||||||
if (tmp)
|
if (!tmp)
|
||||||
m->elems = tmp;
|
|
||||||
else
|
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
m->elems = tmp;
|
||||||
}
|
}
|
||||||
if (value) {
|
if (value) {
|
||||||
if (flags & AV_DICT_DONT_STRDUP_KEY)
|
if (flags & AV_DICT_DONT_STRDUP_KEY)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user