8179990: Cleaner palette entry handling
authorserb
Wed, 17 May 2017 18:22:54 -0700
changeset 48563 d3d2db0f234f
parent 48562 592c141b1ca3
child 48564 1fc3a5f9791f
8179990: Cleaner palette entry handling Reviewed-by: prr, mschoene, rhalade
src/java.desktop/windows/native/libawt/windows/awt_Palette.cpp
--- a/src/java.desktop/windows/native/libawt/windows/awt_Palette.cpp	Wed May 17 14:57:10 2017 -0700
+++ b/src/java.desktop/windows/native/libawt/windows/awt_Palette.cpp	Wed May 17 18:22:54 2017 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2008, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -148,7 +148,7 @@
         pEntry->peFlags = PC_EXPLICIT;
     }
     hPal = ::CreatePalette(pLogPal);
-    delete pLogPal;
+    delete[] pLogPal;
     if ( hPal == 0 ) {
         return 0;
     }