Try to fix some connection issues. Urge to rewrite rising.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3778 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2022-01-20 04:01:45 +00:00
parent df94378b96
commit 1734c88627
2 changed files with 59 additions and 33 deletions

View File

@ -1476,11 +1476,6 @@ void tf_task_destroy(tf_task_t* task)
free(export);
}
if (task->_trace)
{
tf_trace_destroy(task->_trace);
}
if (task->_ssb)
{
tf_ssb_destroy(task->_ssb);
@ -1507,6 +1502,10 @@ void tf_task_destroy(tf_task_t* task)
{
uv_print_all_handles(&task->_loop, stdout);
}
if (task->_trace)
{
tf_trace_destroy(task->_trace);
}
--_count;
free((void*)task->_path);
free(task);