From 849f97dd037d4591737940b8bf435c6c15ea2172 Mon Sep 17 00:00:00 2001 From: "dbaron%dbaron.org" Date: Mon, 17 Apr 2006 23:03:51 +0000 Subject: [PATCH] Fix mismatched allocators. b=334162 r+sr=jst --- js/src/xpconnect/src/xpclog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/xpconnect/src/xpclog.cpp b/js/src/xpconnect/src/xpclog.cpp index 88a75ecf1289..529402c5445f 100644 --- a/js/src/xpconnect/src/xpclog.cpp +++ b/js/src/xpconnect/src/xpclog.cpp @@ -77,7 +77,7 @@ XPC_Log_Finish() { if(g_InitState == 1) { - delete g_Spaces; + delete [] g_Spaces; // we'd like to properly cleanup the LogModule, but nspr owns that g_LogMod = nsnull; }