From a3e4600edf5b79a836e3705f24527d7d85193b2b Mon Sep 17 00:00:00 2001 From: "bbaetz%cs.mcgill.ca" Date: Fri, 6 Apr 2001 04:35:12 +0000 Subject: [PATCH] bug 74666 - Wrong context used in nsFTPChannel::OnStopRequest r=jag, sr=darin --- netwerk/protocol/ftp/src/nsFTPChannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netwerk/protocol/ftp/src/nsFTPChannel.cpp b/netwerk/protocol/ftp/src/nsFTPChannel.cpp index 9d91dd7adf6..e9b1f120590 100644 --- a/netwerk/protocol/ftp/src/nsFTPChannel.cpp +++ b/netwerk/protocol/ftp/src/nsFTPChannel.cpp @@ -486,7 +486,7 @@ nsFTPChannel::OnStopRequest(nsIRequest *request, nsISupports* aContext, } if (mListener) { - rv = mListener->OnStopRequest(this, aContext, aStatus, aStatusArg); + rv = mListener->OnStopRequest(this, mUserContext, aStatus, aStatusArg); if (NS_FAILED(rv)) return rv; } if (mLoadGroup) {