From b3f665022d69aaaab8ca70207a954f76d1d61fe7 Mon Sep 17 00:00:00 2001 From: "darin%meer.net" Date: Wed, 10 May 2006 20:29:54 +0000 Subject: [PATCH] fixes SunOS bustage --- netwerk/protocol/http/src/nsHttpConnectionMgr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netwerk/protocol/http/src/nsHttpConnectionMgr.h b/netwerk/protocol/http/src/nsHttpConnectionMgr.h index 922033222e3..18b6343cbed 100644 --- a/netwerk/protocol/http/src/nsHttpConnectionMgr.h +++ b/netwerk/protocol/http/src/nsHttpConnectionMgr.h @@ -242,7 +242,8 @@ private: NS_IMETHOD Run() { - (mMgr->*mHandler)(mIParam, mVParam); + (NS_STATIC_CAST(nsHttpConnectionMgr *, mMgr.get())->*mHandler)( + mIParam, mVParam); return NS_OK; }