vote up -2 vote down star

Hi

I am trying to access Byte array from an int array which contain address of byte array. i.e

MSMQ_SEND *ReadBytesFromArr = NULL;
ReadBytesFromArr = (MSMQ_SEND*)Queue_Element_Send[1];

where Queue_Element_Send[1] contains address.which contain byte array.

but i am getting some junk character after typecast in C code only.

definition of MSMQ_SEND:

typedef struct MESSAGE_QUQUE { 
    BYTE *Queue_Element;
    INT32 Queue_Element_Len; 
} MSMQ_SEND;
flag

0% accept rate
1  
Plz add declaration of MSMQ_SEND type and Queue_Element_Send variable – qrdl Aug 20 at 11:11
BTW are you sure you need 2nd array element, not a first one (with index 0)? – qrdl Aug 20 at 11:12

2 Answers

vote up 1 vote down

if Queue_Element_Send isc an array of Byte, then Queue_Element_Send[1] is a Byte - castiong a Byte to pointer will result in garbage.

In the (it seems to me unlikely) event that the pointer is held in the 4 consecutive memory locations starting at the array element [1], this cast would convert to a pointer:

ReadBytesFromArr = *((MSMQ_SEND**)&Queue_Element_Send[1])
link|flag
no no Queue_Element_Send[1] is array of integer,typedef struct MESSAGE_QUQUE { BYTE *Queue_Element; INT32 Queue_Element_Len; }MSMQ_SEND ; – Bhrkamal Aug 20 at 12:37
please modify your question to reflect this. – Neil Butterworth Aug 20 at 12:40
vote up 1 vote down

You said that Queue_Element_Send is an array of integers. You're treating Queue_Element_Send[1] as if it were a pointer. Integers aren't the same thing as pointers. How are you creating the contents of Queue_Element_Send?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.