bug-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug classpath/43060] NullPointerException in javax.naming.spi.NamingMan


From: lorban at bitronix dot be
Subject: [Bug classpath/43060] NullPointerException in javax.naming.spi.NamingManager.getStateToBind
Date: 14 Feb 2010 12:36:43 -0000


------- Comment #1 from lorban at bitronix dot be  2010-02-14 12:36 -------
replacing NamingManager.java line 391:

String path = (String) env.get (property);

with this:

String path = env == null ? null : (String) env.get (property);

solves the issue.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43060





reply via email to

[Prev in Thread] Current Thread [Next in Thread]