From 838a1b4e51fcbd13aee9979577ea73b0a676f326 Mon Sep 17 00:00:00 2001 From: Jonas Widen Date: Sun, 16 Mar 2025 18:39:52 +0100 Subject: [PATCH] Fixed crash --- lua/gemini/api.lua | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/lua/gemini/api.lua b/lua/gemini/api.lua index bc62d30..bf3a55f 100644 --- a/lua/gemini/api.lua +++ b/lua/gemini/api.lua @@ -19,8 +19,15 @@ local function async_request(url, payload, callback) local stdout = vim.loop.new_pipe() local stderr = vim.loop.new_pipe() - -- Spawn curl process - local handle = vim.loop.spawn('curl', { + -- Spawn curl process with handle in broader scope + local handle + local function cleanup() + if stdout then stdout:close() end + if stderr then stderr:close() end + if handle then handle:close() end + end + + handle = vim.loop.spawn('curl', { args = { '-s', '-X', 'POST', @@ -30,10 +37,8 @@ local function async_request(url, payload, callback) }, stdio = {nil, stdout, stderr} }, function(exit_code, signal) -- This is the exit callback - -- Close all handles - stdout:close() - stderr:close() - handle:close() + -- Clean up handles + cleanup() if exit_code ~= 0 then vim.schedule(function() @@ -54,6 +59,7 @@ local function async_request(url, payload, callback) end) if not handle then + cleanup() vim.schedule(function() callback(nil, "Failed to start curl") end) @@ -63,6 +69,7 @@ local function async_request(url, payload, callback) -- Handle stdout data stdout:read_start(function(err, chunk) if err then + cleanup() vim.schedule(function() callback(nil, "Read error: " .. err) end) @@ -76,6 +83,7 @@ local function async_request(url, payload, callback) -- Handle stderr data stderr:read_start(function(err, chunk) if err then + cleanup() vim.schedule(function() callback(nil, "Error reading stderr: " .. err) end)