mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
cmdutils: fix a memleak when specifying an option twice.
This commit is contained in:
parent
dc40285427
commit
a1bcc76e60
@ -271,6 +271,7 @@ int parse_option(void *optctx, const char *opt, const char *arg,
|
||||
if (po->flags & OPT_STRING) {
|
||||
char *str;
|
||||
str = av_strdup(arg);
|
||||
av_freep(dst);
|
||||
*(char **)dst = str;
|
||||
} else if (po->flags & OPT_BOOL) {
|
||||
*(int *)dst = bool_val;
|
||||
|
Loading…
Reference in New Issue
Block a user