[rfc][icedtea-web] fixed another exception from get attributes

Jiri Vanek jvanek at redhat.com
Tue Nov 26 05:38:28 PST 2013


On 11/26/2013 01:35 PM, Xerxes Rånby wrote:
> 2013-11-26 11:29, Jiri Vanek skrev:
>> Reported today by Xerxes, test is longer then fix :)
>> Also the page with it was added to http://icedtea.classpath.org/wiki/IcedTea-Web-Tests - http://joliclic.free.fr/html/object-tag/en/object-java.html
>>
>> Thanx for keeping en eye on head Xerxes!
>>
>> J.
>>
>
> The NPE is fixed on my side as well with the patch attached.
> Passed: net.sourceforge.jnlp.runtime.JNLPClassLoaderTest.tryNullManifest
>
> A review of the patch:
>
> diff -r 5cbe8b1de584 netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
> --- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Tue Nov 26 11:05:25 2013 +0100
> +++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Tue Nov 26 11:25:00 2013 +0100
> @@ -900,6 +900,11 @@
>               JarFile mainJar = null;
>               try {
>                   mainJar = new JarFile(f);
> +                Manifest manifest = mainJar.getManifest();
> +                if (manifest == null || manifest.getMainAttributes() == null){
> +                    //yes, jars without manifest exists
> +                    return null;
> +                }
>                   attributeValue = mainJar.getManifest().
>
> How about using the already fetched manifest. here? ^
>

Sure. Fixed. Thanx for check!

>
> Thank you Jiri for the good object tag discussion in #openjdk at irc.oftc.net
>
> Cheers
> Xerxes
>

-------------- next part --------------
A non-text attachment was scrubbed...
Name: anotherNpeInGetAttributes2.patch
Type: text/x-patch
Size: 5498 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20131126/dbe48b68/anotherNpeInGetAttributes2.patch 


More information about the distro-pkg-dev mailing list