We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd9cb55 commit 004d2edCopy full SHA for 004d2ed
1 file changed
Runtime/Bindings/FFI/curl/curl.lua
@@ -442,9 +442,9 @@ function curl.initialize()
442
function easy:header(...)
443
return curl.curl_easy_header(self, ...)
444
end
445
- function easy:init(...)
446
- return curl.curl_easy_init(self, ...)
447
- end
+ -- function easy:init(...)
+ -- return curl.curl_easy_init(self, ...)
+ -- end
448
449
function easy:nextheader(...)
450
return curl.curl_easy_nextheader(self, ...)
@@ -540,7 +540,7 @@ end
540
541
function curl.easy_init()
542
local handle = curl.bindings.curl_easy_init()
543
-
+ ffi.gc(handle, curl.bindings.curl_easy_cleanup)
544
return handle
545
546
0 commit comments