Bug 979

Summary: Incorrect arguments in DII request causes memory leak and possible hang.
Product: TAO Reporter: Jeff Parsons <parsons>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: ASSIGNED ---    
Severity: minor CC: M.Voronoy
Priority: P3    
Version: 1.1.9   
Hardware: All   
OS: All   

Description Jeff Parsons 2001-07-20 18:47:36 CDT
Reported by Maxim Voronoy <M.Voronoy@telesenskscl.com.ua>. He reports
(on MSVC 6.0 and Win2K/NT) that this IDL file:

interface A
{
    void method_that_dii(in long a);
};

and this client code:


    A_imp a;
    A_ptr a_ptr = a->_this();
    CORBA::Request_var req = a_ptr->_request("method_that_dii");
    req->invoke();
    //there we never get :(


cause the client to hang and task manager to show growing memory
usage. I tried a similar example and got no hang but I did see the
leak. The spec does not require checking like this to be done, but
it would be nice to throw an exception. Must figure out how to 
check on the server side without penalizing performance.
Comment 1 Jeff Parsons 2001-07-20 18:48:34 CDT
A low priority at this time, but the entry is here so it won't be forgotten.