vote up 0 vote down star

Hi all,

I am facing a problem on malloc for allocating memory:

ByteArr = (BYTE *)malloc(sizeof(SHORT) * 20);

I m getting error like

"CXX0030: Error: expression cannot be evaluated"

But if i am taking 428 or 1024 instead of 20 than its allocating the memory.Can you please tell me where is the problem ...thanks.

flag

0% accept rate
What is the type of ByteArr? – LeopardSkinPillBoxHat Jul 1 at 5:17
1  
Can you also post the definition for BYTE and SHORT – Alphaneo Jul 1 at 5:19
Are you sure 'SHORT' is defined? Try replacing it with 'short int'., – florin Jul 1 at 5:19
i am declaring BYTE *ByteArr; – BhrKamal Jul 1 at 5:28
4  
Do not cast malloc()'s return value! – Vinko Vrsalovic Jul 1 at 5:40
show 2 more comments

6 Answers

vote up 0 vote down

one guess.

What i feel is there might be one more allocation, before this allocation, and there u r over running the allocated memory space. and then again trying to allocate here, where malloc logic may be failing.

malloc is not finding next free block coz of previous case of over running and hence not able to allocate for mentioned space, and if u give 1024 malloc is finding one block where that much free space is available and is getting allocated

try to fix that allocation then this problem will be solved.

with regards Vinayaka karjigi

link|flag
vote up 0 vote down

Reference this page:

http://www.codeguru.com/forum/showthread.php?t=430940

It seems you need allocate more space. Also google is always a good helper.

link|flag
vote up 4 vote down

Extending lavino's answer and the fact this problem does not happen when you use the values like 1024 indicates to me that you are trying to read/write from a memory which is outside what you have allocated. Looks like you have allocated 20 shorts and try to read 100th short usinf the ByteArr pointer. This will show the 'expression can not be evaluated' error in the debugger.

link|flag
vote up 1 vote down

Updated:

That's a message in the debugger, telling you that the memory pointed to by the return isn't a valid memory block.

[Not this] Is the return value ENOMEM? If so, for some reason memory isn't being allocated, or the target variable isn't compatible with the return value of the malloc() call.

[Not this] What is the type of ByteArr? It's BYTE*, right? And not BYTE[]?

[How about this?] At the time of the debugger message, is ByteArr still pointing to the same address that was returned by the malloc() call? You might be off the end of the array, or completely outside the allocated memory block.

link|flag
yes it is BYTE * not BYTE[] – BhrKamal Jul 1 at 5:31
I am also checked for char ie CHAR ByteArr = (CHAR)malloc(sizeof(CHAR) * 20); this also giving same error. – BhrKamal Jul 1 at 6:07
vote up 0 vote down

I guess the problem is that it should be:

Byte* ByteArr = (BYTE *)malloc(sizeof(SHORT) * 20);

instead of:

Byte ByteArr = (BYTE *)malloc(sizeof(SHORT) * 20);

Now, I am not sure what is ByteArr in your code but from one of your comments to another answer I have sort of picked out that this is the problem.

link|flag
i am useing BYTE *ByteArr;. – BhrKamal Jul 1 at 5:29
i am using BYTE as typedef unsigned char . – BhrKamal Jul 1 at 6:01
I am also checked for char i.e CHAR *ByteArr = (CHAR *) malloc(sizeof(CHAR) * 20); but this is also giving same problem. – BhrKamal Jul 1 at 6:09
vote up 2 vote down

I'm not sure why it's working for other values, but the expression that it can't evaluate might be the missing variable for the ByteArr. You have the type specified, but no variable to assign.

BYTE *myByteArr = (BYTE *)malloc(sizeof(SHORT) * 20);
link|flag
Yes that is BYTE ByteArr. – BhrKamal Jul 1 at 5:22
@BhirKamal: It should be BYTE* ByteArr – Naveen Jul 1 at 5:25
typedef unsigned char BYTE – BhrKamal Jul 1 at 6:00
i am also checked for char ie CHAR *ByteArr = (CHAR *)malloc(sizeof(CHAR) * 20); this also giving same problem. – BhrKamal Jul 1 at 6:06

Your Answer

Get an OpenID
or

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