From 4ddae2d565ad4d2c2ece69f9830bab3968e702e5 Mon Sep 17 00:00:00 2001 From: "mrbkap%gmail.com" Date: Wed, 3 May 2006 00:22:13 +0000 Subject: [PATCH] Ensure that |this| is correct when calling FindProxyForURL. bug 336313, r=darin sr+a=dveditz git-svn-id: svn://10.0.0.236/trunk@195858 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/base/src/nsProxyAutoConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/netwerk/base/src/nsProxyAutoConfig.js b/mozilla/netwerk/base/src/nsProxyAutoConfig.js index c56cfb7a650..c2a55fffd4d 100644 --- a/mozilla/netwerk/base/src/nsProxyAutoConfig.js +++ b/mozilla/netwerk/base/src/nsProxyAutoConfig.js @@ -96,7 +96,7 @@ nsProxyAutoConfig.prototype = { return null; // Call the original function - return this._findProxyForURL(testURI, testHost); + return this._findProxyForURL.call(this._sandBox, testURI, testHost); } }