John Rohlf (jrohlf++at++tubes)
Thu, 5 May 94 16:50:10 PDT
You caught us in an unneighborly act. We do indeed overload
new and delete but only delete should be visible to you. The next
release will fix this but for now, modify your link order so that your
delete gets used. Then you'll need to delete Performer memory for us which
is easy:
long addr = (long)pfGetSharedArena();
long size = (long)pfGetSharedArenaSize();
if (p >= addr && p < addr+size)
afree(p, addr);
else
free(p);
Let me know how this works for you.
This archive was generated by hypermail 2.0b2 on Mon Aug 10 1998 - 17:50:16 PDT