Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 20163 invoked from network); 20 Oct 2006 08:34:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 Oct 2006 08:34:34 -0000 Received: (qmail 25869 invoked by uid 500); 20 Oct 2006 08:34:34 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 25762 invoked by uid 500); 20 Oct 2006 08:34:33 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 25747 invoked by uid 99); 20 Oct 2006 08:34:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Oct 2006 01:34:33 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Oct 2006 01:34:32 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A723E714316 for ; Fri, 20 Oct 2006 01:33:36 -0700 (PDT) Message-ID: <4678154.1161333216681.JavaMail.jira@brutus> Date: Fri, 20 Oct 2006 01:33:36 -0700 (PDT) From: "Mikhail Loenko (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Resolved: (HARMONY-1471) [classlib][awt] TexturePaint expected NPE if one of input parameters is null In-Reply-To: <22864431.1158311302424.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/HARMONY-1471?page=all ] Mikhail Loenko resolved HARMONY-1471. ------------------------------------- Resolution: Fixed fixed in revision 466035 Denis, please check the patch was applied as expected > [classlib][awt] TexturePaint expected NPE if one of input parameters is null > ---------------------------------------------------------------------------- > > Key: HARMONY-1471 > URL: http://issues.apache.org/jira/browse/HARMONY-1471 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Denis Kishenko > Assigned To: Mikhail Loenko > Attachments: 1471-TexturePaint.patch, 1471-TexturePaintTest.patch > > > Harmony implementation of TexturePaint doesn't check null value of input parameters while RI does and throws NPE > =========== Spec ================= > Nothing about exceptions > ============== Test.java ============= > import java.awt.*; > import java.awt.image.BufferedImage; > public class Test { > static public void main(String[] args) { > try { > System.err.println("1"); > new TexturePaint(null, new Rectangle()); > } catch (Exception e) { > e.printStackTrace(); > } > try { > System.err.println("2"); > new TexturePaint(new BufferedImage(1, 1, 1), null); > } catch (Exception e) { > e.printStackTrace(); > } > } > } > ============= RI output ============ > 1 > java.lang.NullPointerException > at java.awt.TexturePaint.(TexturePaint.java:54) > at Test.main(Test.java:9) > 2 > java.lang.NullPointerException > at java.awt.TexturePaint.(TexturePaint.java:52) > at Test.main(Test.java:15) > ========== Harmony output ======== > 1 > 2 > java.lang.UnsatisfiedLinkError: > at org.apache.harmony.awt.gl.Surface.(Surface.java:84) > at java.awt.image.BufferedImage.createImageSurface(BufferedImage.java:659) > at java.awt.image.BufferedImage.(BufferedImage.java:352) > at bug9768.main(bug9768.java:15) -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira