Bug 8222

Summary: NPE occurs with <fmt:message> if LocalizationContext is null or empty
Product: Taglibs Reporter: Ryan Lubke <Ryan.Lubke>
Component: Standard TaglibAssignee: Tomcat Developers Mailing List <dev>
Status: RESOLVED FIXED    
Severity: major    
Priority: P3    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   

Description Ryan Lubke 2002-04-17 18:39:42 UTC
Given:

<fmt:bundle basename="${null}">
   <fmt:message key="mkey"/>
</fmt:bundle>

<fmt:bundle basename="">
   <fmt:message key="mkey"/>
</fmt:bundle>

Result:

java.lang.NullPointerException
	at
org.apache.taglibs.standard.tag.common.fmt.MessageSupport.doEndTag(MessageSupport.java:186)

Expected result, based on the spec is "???<key>???"
Comment 1 Jan Luehe 2002-04-17 18:56:02 UTC
Fixed.