We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I noticed that in https://github.com/stil/CurlThin/blob/89c94a1358365bdf6b4c722dd48734ca8e4c71f6/CurlThin.Samples/Easy/HttpHeadersSample.cs line 36 you called CurlNative.Slist.FreeAll(headers);. However the SafeSlistHandle itself will call this function in ReleaseHandle() method. Will that cause a double-free?
CurlNative.Slist.FreeAll(headers);
SafeSlistHandle
ReleaseHandle()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I noticed that in https://github.com/stil/CurlThin/blob/89c94a1358365bdf6b4c722dd48734ca8e4c71f6/CurlThin.Samples/Easy/HttpHeadersSample.cs line 36 you called
CurlNative.Slist.FreeAll(headers);
. However theSafeSlistHandle
itself will call this function inReleaseHandle()
method. Will that cause a double-free?The text was updated successfully, but these errors were encountered: