Don't return an error for double tls free.

Apparently, that's a-okay.
This commit is contained in:
Unknown W. Brackets 2015-02-15 19:17:40 -08:00
parent be1e7cfb37
commit ccaa75ec53

View File

@ -1971,9 +1971,9 @@ int __KernelFreeTls(TLSPL *tls, SceUID threadID)
++tls->ntls.freeBlocks;
return 0;
}
// TODO: Correct error code.
// We say "okay" even though nothing was freed.
else
return -1;
return 0;
}
void __KernelTlsplThreadEnd(SceUID threadID)