mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-24 06:08:43 -05:00
UI: Fix potential null pointer dereference
If you're using an encoder from a plugin, and you remove that plugin, this value will be null, causing a crash. (Lain note: I realize that this isn't the best solution to this problem, though there really isn't any way to infer what type of encoder the prior encoder was. Should also save the encoder type as additional setting metadata in future versions.)
This commit is contained in:
@@ -1441,7 +1441,7 @@ static QString get_adv_audio_fallback(const QString &enc)
|
||||
{
|
||||
const char *codec = obs_get_encoder_codec(QT_TO_UTF8(enc));
|
||||
|
||||
if (strcmp(codec, "aac") == 0)
|
||||
if (codec && strcmp(codec, "aac") == 0)
|
||||
return "ffmpeg_opus";
|
||||
|
||||
QString aac_default = "ffmpeg_aac";
|
||||
|
||||
Reference in New Issue
Block a user