Commit d433e1ae authored by Martin Storsjö's avatar Martin Storsjö

mem: Make av_strdup allocate using av_realloc

This makes sure that pointers from av_strdup are reallocable,
which is used in av_dict_set if the AV_DICT_APPEND flag is set.

Nothing should rely on pointers from av_strdup being aligned.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 825c7c62
...@@ -214,7 +214,7 @@ char *av_strdup(const char *s) ...@@ -214,7 +214,7 @@ char *av_strdup(const char *s)
char *ptr = NULL; char *ptr = NULL;
if (s) { if (s) {
int len = strlen(s) + 1; int len = strlen(s) + 1;
ptr = av_malloc(len); ptr = av_realloc(NULL, len);
if (ptr) if (ptr)
memcpy(ptr, s, len); memcpy(ptr, s, len);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment