You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SafeEasyHandler is defined as
private SafeEasyHandle() : base(IntPtr.Zero, false)
So handle isnt owed by SafeHandle and ReleaseHandle will be not called.
Then CurlNative.Easy.Cleanup(handle); missed in all examples (for multi is the same ).
Or just change to
private SafeEasyHandle() : base(IntPtr.Zero, true)
The text was updated successfully, but these errors were encountered:
Hello,
SafeEasyHandler is defined as
private SafeEasyHandle() : base(IntPtr.Zero, false)
So handle isnt owed by SafeHandle and ReleaseHandle will be not called.
Then CurlNative.Easy.Cleanup(handle); missed in all examples (for multi is the same ).
Or just change to
private SafeEasyHandle() : base(IntPtr.Zero, true)
The text was updated successfully, but these errors were encountered: