So I am trying to use the following code to add some memory to the heap without using malloc (size is a unsigned int parameter in the function, and is not a set number)

void * temp = sbrk(sizeof(void*)+sizeof(unsigned int)+size);

Now I want to set the value of the void * in temp to be NULL, however when I try to do

*(void *)temp = NULL;

my compiler tells me that I cannot dereference a void *. How do I solve this error?

link|improve this question

2  
Try *(void **)temp = NULL;. – Daniel Fischer Feb 13 at 20:43
feedback

2 Answers

up vote 1 down vote accepted

If you want to change the value of temp, use temp=NULL.

If you want to put NULL in the address that temp points to, use *(void**)temp=NULL.

link|improve this answer
Solved it perfectly. Thanks!! – mrswmmr Feb 13 at 20:57
feedback

You have declared temp as a void*, not a void**.

If it were declared as a void** then *temp = NULL would work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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