From 2ef7ab46cf4e38d9609482b329e6a2034e61978a Mon Sep 17 00:00:00 2001 From: "darin%meer.net" Date: Mon, 12 Dec 2005 00:47:21 +0000 Subject: [PATCH] fix win32 build bustage --- xpcom/build/dlldeps.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xpcom/build/dlldeps.cpp b/xpcom/build/dlldeps.cpp index 46979f164663..35c3aa7b88c3 100644 --- a/xpcom/build/dlldeps.cpp +++ b/xpcom/build/dlldeps.cpp @@ -119,7 +119,10 @@ void XXXNeverCalled() NS_NewInputStreamReadyEvent(nsnull, nsnull, nsnull); NS_NewOutputStreamReadyEvent(nsnull, nsnull, nsnull); NS_AsyncCopy(nsnull, nsnull, nsnull, NS_ASYNCCOPY_VIA_READSEGMENTS, 0, nsnull, nsnull); - NS_ConsumeStream(nsnull, 0, nsCString()); + { + nsCString temp; + NS_ConsumeStream(nsnull, 0, temp); + } NS_InputStreamIsBuffered(nsnull); NS_OutputStreamIsBuffered(nsnull); PL_DHashStubEnumRemove(nsnull, nsnull, nsnull, nsnull);