Anonymous
-
2015-01-22
- assigned_to: bert
Originally created by: bert
Originally owned by: bert
Hi,
I'm getting the impression that pointers to structs are not properly referenced in dxf_*_free() functions.
As is now:
dxf_arc_free (DxfArc *dxf_arc)
{
...
}
Probably has to become:
dxf_arc_free (DxfArc **dxf_arc)
{
...
}
I'm not sure and have investigate (and test) more.
Maybe someone with more foo on pointers can give some clues how to handle the referenceing inside the function.
As it is now, the value of the pointer is not returned from the scope of the function to the caller.
Kind regards,
Bert Timmerman.