OS X Memory leak

Archives Forums/BlitzMax Bug Reports/OS X Memory leak

Brucey(Posted 2010) [#1]
The XCode Instruments indicating there is a leak in a max app has always bugged me, but I've never looked into it until now.

in blitz_app.c, you need to release the CFURLRef which is returned by CFBundleCopyExecutableURL().

Something like:
CFRelease(url);



Thanks!


marksibly(Posted 2010) [#2]
QED!