changeset 11762:a62eb74fd17f

8060461: Fix for JDK-8042609 uncovers additional issue Reviewed-by: ahgross, prr, serb
author azvegint
date Tue, 11 Nov 2014 17:36:43 +0300
parents 652f25168f39
children fb09e31149da
files src/java.desktop/unix/native/libsplashscreen/splashscreen_sys.c
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/java.desktop/unix/native/libsplashscreen/splashscreen_sys.c	Thu Jun 26 14:49:23 2014 +0100
+++ b/src/java.desktop/unix/native/libsplashscreen/splashscreen_sys.c	Tue Nov 11 17:36:43 2014 +0300
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2014, 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
@@ -281,9 +281,7 @@
 /* for changing the visible shape of a window to an nonrectangular form */
 void
 SplashUpdateShape(Splash * splash) {
-    if (!shapeSupported)
-        return;
-    if (!splash->maskRequired) {
+    if (splash->currentFrame < 0 || !shapeSupported || !splash->maskRequired) {
         return;
     }
     XShapeCombineRectangles(splash->display, splash->window, ShapeClip, 0, 0,
@@ -324,6 +322,10 @@
 
 void
 SplashRedrawWindow(Splash * splash) {
+    if (splash->currentFrame < 0) {
+        return;
+    }
+
     XImage *ximage;
 
     // making this method redraw a part of the image does not make