diff --git a/toolkit/xre/dllservices/ModuleEvaluator.cpp b/toolkit/xre/dllservices/ModuleEvaluator.cpp index 56a4cea3e215..76fa7c79c278 100644 --- a/toolkit/xre/dllservices/ModuleEvaluator.cpp +++ b/toolkit/xre/dllservices/ModuleEvaluator.cpp @@ -172,6 +172,8 @@ Maybe ModuleEvaluator::GetTrust( return Some(ModuleTrustFlags::MicrosoftWindowsSignature); } else if (signedBy.EqualsLiteral("Microsoft Corporation")) { return Some(ModuleTrustFlags::MicrosoftWindowsSignature); + } else if (signedBy.EqualsLiteral("Microsoft Windows Software Compatibility Publisher")) { + return Some(ModuleTrustFlags::MicrosoftWindowsSignature); } else if (signedBy.EqualsLiteral("Mozilla Corporation")) { return Some(ModuleTrustFlags::MozillaSignature); } else if (signedBy.EqualsLiteral("BrowserWorks Ltd")) {