Bug 1135427. Add missing early return, because throwing an exception without returning is weird. r=khuey

This commit is contained in:
Boris Zbarsky 2015-02-23 10:03:27 -05:00
parent 2574fff814
commit 8c1e8cb9b3

View File

@ -2228,6 +2228,7 @@ XMLHttpRequest::Abort(ErrorResult& aRv)
if (mCanceled) {
aRv.ThrowUncatchableException();
return;
}
if (!mProxy) {