From 9adf0096b68ef8224e6bb9db5bfe32bf7e5b18c2 Mon Sep 17 00:00:00 2001 From: "idk%eng.sun.com" Date: Tue, 15 Feb 2000 20:15:08 +0000 Subject: [PATCH] Fixed typo --- xpcom/remote/common/RPCallImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/remote/common/RPCallImpl.cpp b/xpcom/remote/common/RPCallImpl.cpp index e0f0042873b..31dc67a13d1 100644 --- a/xpcom/remote/common/RPCallImpl.cpp +++ b/xpcom/remote/common/RPCallImpl.cpp @@ -263,7 +263,7 @@ NS_IMETHODIMP RPCallImpl::Demarshal(void * data, PRUint32 _size) { params[i].Init(*value,type); if (isOut) { params[i].flags |= nsXPTCVariant::PTR_IS_DATA; - params[i].ptr = params[i].val.p = *value.val.p; + params[i].ptr = params[i].val.p = value->val.p; } } return NS_OK;