problem with malloc/realloc. Pls help.

Mark Fisher mark.j.fisher@gmail.com
Mon Aug 21 18:10:00 GMT 2006


On 8/21/06, Omololu wrote:
> Hi,
>  i have the following code. it compiles with gcc in Cygwin but the contents of
> the array ifitQ that I get after the call to the subroutine readCharges2 is
> gibberish.

looks like a passing by reference problem. if you add debug to look
at the address of ifitQ at all stages, you'll notice that the copy pointer
in readCharges2 gets changed, but that isn't the same pointer as in
the calling block.

see section 2.17 of http://www.lysator.liu.se/c/c-faq/c-2.html

i don't understand how linux is getting it right tbh.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/



More information about the Cygwin mailing list