From 469a3f7e7722de22aff44c76ea12540e453181da Mon Sep 17 00:00:00 2001 From: "L. David Baron" Date: Thu, 22 Jan 2009 17:28:14 -0800 Subject: [PATCH] Fix mismatch between new[] and delete. (Bug 376075) r+sr=bzbarsky --- layout/style/nsCSSProps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/style/nsCSSProps.cpp b/layout/style/nsCSSProps.cpp index 843ad36fb71..92b625f6ef3 100644 --- a/layout/style/nsCSSProps.cpp +++ b/layout/style/nsCSSProps.cpp @@ -303,7 +303,7 @@ nsCSSProps::ReleaseTable(void) delete gFontDescTable; gFontDescTable = nsnull; - delete gShorthandsContainingPool; + delete [] gShorthandsContainingPool; gShorthandsContainingPool = nsnull; } }