UI: Fix memory leak when dropping files

This fixes a memory leak when dropping files when the name
is the same as other sources.
This commit is contained in:
Clayton Groeneveld 2020-09-02 15:08:17 -05:00
parent 4aa6610bf4
commit fd0872d630

View File

@ -51,8 +51,11 @@ static string GenerateSourceName(const char *base)
}
obs_source_t *source = obs_get_source_by_name(name.c_str());
if (!source)
return name;
else
obs_source_release(source);
}
}