DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=38385>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=38385 Summary: Nullpointer when creating URI from scheme specific part with null fragment Product: HttpClient Version: 3.0 Final Platform: All URL: http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper /httpclient/trunk/src/java/org/apache/commons/httpclient /URI.java?rev=358634&view=markup OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Commons HttpClient AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] in org.apache.commons.httpclient.URI class constructor: public URI(String scheme, String schemeSpecificPart, String fragment) throws URIException { .... _fragment = fragment.toCharArray(); should be _fragment = fragment==null ? null : fragment.toCharArray(); -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
