After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 55729 - Passing a bad value to string_to_object breaks subsequent calls with a valid IOR (raises CORBA.MARSHAL)
Passing a bad value to string_to_object breaks subsequent calls with a valid ...
Status: RESOLVED NOTABUG
Product: ORBit
Classification: Deprecated
Component: general
0.5
Other Linux
: Normal major
: ---
Assigned To: ORBit maintainers
ORBit maintainers
Depends on:
Blocks:
 
 
Reported: 2001-06-04 23:40 UTC by Jason Tackaberry
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jason Tackaberry 2001-06-04 23:40:20 UTC
For example:

    client = CORBA_ORB_string_to_object(orb, "foo", &ev);
    client = CORBA_ORB_string_to_object(orb, valid_ior_string, &ev);

The first call fails, as expected (raises CORBA.MARSHAL), but the second
call, which receives a valid IOR, also raises CORBA.MARSHAL.
Comment 1 Elliot Lee 2001-09-11 21:43:55 UTC
You need to clear any exception value between calls - it doesn't go
away by itself.