# HG changeset patch # User aleonard # Date 1553628385 0 # Tue Mar 26 19:26:25 2019 +0000 # Node ID 5c0d0b52de65aca95b56d311ba2dcce03ab72bee # Parent 8af48416e31f7c49f315e7b4b8c66c94cc3c9685 8217735: awt_image_GifImageDecoder_parseImage() interlace param has the wrong type diff --git a/src/java.desktop/share/native/libawt/awt/image/gif/gifdecoder.c b/src/java.desktop/share/native/libawt/awt/image/gif/gifdecoder.c --- a/src/java.desktop/share/native/libawt/awt/image/gif/gifdecoder.c +++ b/src/java.desktop/share/native/libawt/awt/image/gif/gifdecoder.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1995, 2019, 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 @@ -117,7 +117,7 @@ jobject this, jint relx, jint rely, jint width, jint height, - jint interlace, + jboolean interlace, jint initCodeSize, jbyteArray blockh, jbyteArray raslineh,