mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 613603 - Don't check the manifest in the omnijar r=tglek a=blocking-fennec
This commit is contained in:
parent
7502b91267
commit
75eedc3cff
@ -393,6 +393,13 @@ nsJAR::GetCertificatePrincipal(const char* aFilename, nsIPrincipal** aPrincipal)
|
|||||||
return NS_ERROR_NULL_POINTER;
|
return NS_ERROR_NULL_POINTER;
|
||||||
*aPrincipal = nsnull;
|
*aPrincipal = nsnull;
|
||||||
|
|
||||||
|
#ifdef MOZ_OMNIJAR
|
||||||
|
// Don't check signatures in the omnijar - this is only
|
||||||
|
// interesting for extensions/XPIs.
|
||||||
|
if (mZip == mozilla::OmnijarReader())
|
||||||
|
return NS_OK;
|
||||||
|
#endif
|
||||||
|
|
||||||
//-- Parse the manifest
|
//-- Parse the manifest
|
||||||
nsresult rv = ParseManifest();
|
nsresult rv = ParseManifest();
|
||||||
if (NS_FAILED(rv)) return rv;
|
if (NS_FAILED(rv)) return rv;
|
||||||
|
Loading…
Reference in New Issue
Block a user