Bug 935973 - ThirdPartyCookieProbe errors r=yoric

This commit is contained in:
Fabrice Desré 2013-11-09 12:32:40 -08:00
parent 9ebe28909e
commit 53a01ad8be

View File

@ -6,6 +6,7 @@
let Ci = Components.interfaces;
let Cu = Components.utils;
let Cr = Components.results;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
Cu.import("resource://gre/modules/Services.jsm");
@ -88,7 +89,13 @@ this.ThirdPartyCookieProbe.prototype = {
data.addRejected(firstParty);
}
} catch (ex) {
// Errors should not remain silent
if (ex instanceof Ci.nsIXPCException) {
if (ex.result == Cr.NS_ERROR_HOST_IS_IP_ADDRESS ||
ex.result == Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS) {
return;
}
}
// Other errors should not remain silent.
Services.console.logStringMessage("ThirdPartyCookieProbe: Uncaught error " + ex + "\n" + ex.stack);
}
},