Problems with CORBA_unsigned_long_long



Hi
I am new to ORBIT and i am having trouble setting default values to a CORBA_unsigned_long_long member variable of a struct.
 
In my idl i have defined a struct
struct ABC {
    unsigned long long xyz;
    ......
   };
 
which maps to the following in my  .h file
typedef struct {
    CORBA_unsigned_long_long xyz;
    ......
   } ABC;
 
now while creating an instance of the above struct
ABC * pqr = ABC_alloc();!!!
but when i try to set some value to the member variable
pqr->xyz = 0;
i get a run time memory exception
this happens only for variables of type CORBA_unsigned_long_long
other types of variables have no problem
 
thanks for listening
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]