Bug 1781250 - Don't crash in RecvIsWindowSupportingProtectedMedia when fuzzing. r=mccr8

Differential Revision: https://phabricator.services.mozilla.com/D152756
This commit is contained in:
Christian Holler 2022-07-26 14:03:08 +00:00
Родитель 21fd159579
Коммит 09aebb9f54
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -4010,6 +4010,9 @@ mozilla::ipc::IPCResult BrowserParent::RecvIsWindowSupportingProtectedMedia(
FxRWindowManager::GetInstance()->IsFxRWindow(aOuterWindowID);
aResolve(!isFxrWindow);
#else
# ifdef FUZZING_SNAPSHOT
return IPC_FAIL(this, "Should only be called on Windows");
# endif
MOZ_CRASH("Should only be called on Windows");
#endif