diff --git a/libavcodec/bsf.c b/libavcodec/bsf.c index ac2024b8dbdb94d15d19e48976b9941da2ef36dd..c984526e140d6df5cd307d46784242691367459b 100644 --- a/libavcodec/bsf.c +++ b/libavcodec/bsf.c @@ -514,8 +514,10 @@ int av_bsf_list_parse_str(const char *str, AVBSFContext **bsf_lst) if (!lst) return AVERROR(ENOMEM); - if (!(dup = buf = av_strdup(str))) - return AVERROR(ENOMEM); + if (!(dup = buf = av_strdup(str))) { + ret = AVERROR(ENOMEM); + goto end; + } while (1) { bsf_str = av_strtok(buf, ",", &saveptr);