Hello.

I'm using
I need to reserve dynamic memory to store raw binary data. I tried the
next code:

  fSize := aObject^.size;
  GetMem (fData, fSize);
  Move (aObject^.dat, fData, fSize);

Both "fData" and "dat" are untyped POINTER but the program returns an
"Segment violation" at the Move procedure. I've checked the pointers
and both are valid (I mean not NIL) and size is always more than zero.

I've read some documentation about the heap memory but I can't
understand why my code doesn't works.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to