Commit 444001bd authored by d s's avatar d s Committed by Michael Niedermayer

Fix avisynth_context_create constructor error handling.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 92a9a302
......@@ -164,26 +164,22 @@ static av_cold int avisynth_context_create(AVFormatContext *s) {
return ret;
}
if (!avs)
return AVERROR_UNKNOWN;
if (!avs_ctx_list) {
avs_ctx_list = avs;
} else {
avs->next = avs_ctx_list;
avs_ctx_list = avs;
}
avs->env = avs_library->avs_create_script_environment(3);
if (avs_library->avs_get_error) {
const char *error = avs_library->avs_get_error(avs->env);
if (error) {
av_log(s, AV_LOG_ERROR, "%s\n", error);
av_free(avs);
return AVERROR_UNKNOWN;
}
}
if (!avs_ctx_list) {
avs_ctx_list = avs;
} else {
avs->next = avs_ctx_list;
avs_ctx_list = avs;
}
return 0;
}
......
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