OpenJDK / aarch32-port / jdk9u / jdk
changeset 17373:2f60047b6f6d
8179990: Cleaner palette entry handling
Reviewed-by: prr, mschoene, rhalade
author | serb |
---|---|
date | Wed, 17 May 2017 18:22:54 -0700 |
parents | 9d38a85687a7 |
children | c15f91b2087e |
files | src/java.desktop/windows/native/libawt/windows/awt_Palette.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/java.desktop/windows/native/libawt/windows/awt_Palette.cpp Thu May 18 08:52:50 2017 +0800 +++ 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; }