From 3c6be86c6c030ae395f1ff62bcb331d4479f9973 Mon Sep 17 00:00:00 2001 From: "rpotts%netscape.com" Date: Tue, 29 Feb 2000 05:05:08 +0000 Subject: [PATCH] Fix unix build bustage... --- netwerk/protocol/http/src/nsHTTPRequest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netwerk/protocol/http/src/nsHTTPRequest.cpp b/netwerk/protocol/http/src/nsHTTPRequest.cpp index 410d5651a564..a3faedba5095 100644 --- a/netwerk/protocol/http/src/nsHTTPRequest.cpp +++ b/netwerk/protocol/http/src/nsHTTPRequest.cpp @@ -554,7 +554,7 @@ nsresult nsHTTPRequest::SetTransport(nsIChannel *aTransport) nsresult nsHTTPRequest::ReleaseTransport(nsIChannel *aTransport) { - if (aTransport == mTransport) { + if (aTransport == mTransport.get()) { mTransport = 0; } return NS_OK;