Fix more async leakage.
This commit is contained in:
parent
7b014ebafa
commit
40506fd6b2
|
@ -445,7 +445,11 @@ int runTests(int detailed, int specificTest)
|
|||
struct helpText h = helpTexts[hi];
|
||||
if (h.tests) {
|
||||
if (detailed && h.testCount > 0) {
|
||||
if (isSpecific) {
|
||||
printf("[0m`%s` ", h.symbol);
|
||||
} else {
|
||||
printf("[0m `%s` ", h.symbol);
|
||||
}
|
||||
}
|
||||
for (int ti = 0; ti < h.testCount; ti += 2) {
|
||||
const char* test = h.tests[ti];
|
||||
|
|
|
@ -61,6 +61,7 @@ void* doAsync(void* args)
|
|||
promise->done = 1;
|
||||
cleanPromise(promise);
|
||||
|
||||
deleteEnv(promise->env);
|
||||
cleanObject(&cloned);
|
||||
return NULL;
|
||||
}
|
||||
|
@ -75,6 +76,7 @@ Object async(Object* params, int length, struct Environment* env)
|
|||
.env = env,
|
||||
.object = cloneObject(params[0]),
|
||||
};
|
||||
env->refs += 1;
|
||||
|
||||
pthread_create(&promise.promise->thread, NULL, doAsync, promise.promise);
|
||||
return promise;
|
||||
|
|
Loading…
Reference in New Issue