Bug 979 - Incorrect arguments in DII request causes memory leak and possible hang.
Summary: Incorrect arguments in DII request causes memory leak and possible hang.
Status: ASSIGNED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.1.9
Hardware: All All
: P3 minor
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2001-07-20 18:47 CDT by Jeff Parsons
Modified: 2018-01-15 11:21 CST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.