[ http://issues.apache.org/jira/browse/XMLRPC-39?page=all ]
     
Jochen Wiedmann closed XMLRPC-39:
---------------------------------

    Resolution: Fixed
     Assign To:     (was: rpc-dev mailing list)

I don't know when, but it seems that the problem has been fixed as proposed.


> NullPointerException in XmlRpcClient.java
> -----------------------------------------
>
>          Key: XMLRPC-39
>          URL: http://issues.apache.org/jira/browse/XMLRPC-39
>      Project: XML-RPC
>         Type: Bug

>   Components: Source
>     Versions: 2.0
>  Environment: Operating System: All
> Platform: All
>     Reporter: Christoph Theis

>
> In current CVS source, around line 290, the code is as follows:
> while (call != null)
> {
>   call = dequeue();
>   executeAsync(call.request, call.callback, call.transport);
> }
> This will ignore the first call and dereference a "null", if the queue is 
> empty.
> I thint it shall be as follows:
> while (call != null)
> {
>   executeAsync(call.request, call.callback, call.transport);
>   call = dequeue();
> }

-- 
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

Reply via email to