In DsmMemFree (under "// Validate..."): if (a_intptrHandle != IntPtr.Zero) return; probably meant to be if (a_intptrHandle == IntPtr.Zero) return; to exit early if the pointer is null
Ouch...there's a leak. Thanks for the catch...
Fixed...
Log in to post a comment.
Ouch...there's a leak. Thanks for the catch...
Fixed...