twain / twain-cs

A C# interface for TWAIN
168 stars 67 forks source link

DsmMemFree - Validate [sf#6] #10

Closed kolomiets closed 7 years ago

kolomiets commented 7 years ago

Reported by mcdon on 2014-10-27 20:35 UTC 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

kolomiets commented 7 years ago

Updated by mlmcl on 2014-10-28 13:02 UTC

kolomiets commented 7 years ago

Commented by mlmcl on 2014-10-28 13:02 UTC Ouch...there's a leak. Thanks for the catch...

kolomiets commented 7 years ago

Updated by mlmcl on 2014-10-30 23:06 UTC

kolomiets commented 7 years ago

Commented by mlmcl on 2014-10-30 23:06 UTC Fixed...