From 89cf796d032fc322f30665279aad7d6d9aad5616 Mon Sep 17 00:00:00 2001 From: "mrbkap@gmail.com" Date: Thu, 5 Jul 2007 13:13:43 -0700 Subject: [PATCH] Ensure that accesses to implicit XPCNativeWrappers are actually legal. bug 384750, r+sr=jst --- js/src/xpconnect/src/XPCNativeWrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/xpconnect/src/XPCNativeWrapper.cpp b/js/src/xpconnect/src/XPCNativeWrapper.cpp index 1d806c96244..795179fa274 100644 --- a/js/src/xpconnect/src/XPCNativeWrapper.cpp +++ b/js/src/xpconnect/src/XPCNativeWrapper.cpp @@ -238,7 +238,7 @@ EnsureLegalActivity(JSContext *cx, JSObject *obj) } // Otherwise, we're looking at a non-system file with a handle on an - // implcit wrapper. This is a bug! Deny access. + // implicit wrapper. This is a bug! Deny access. return ThrowException(NS_ERROR_XPC_SECURITY_MANAGER_VETO, cx); }