mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 14:00:03 +00:00
Don't return an error for double tls free.
Apparently, that's a-okay.
This commit is contained in:
parent
be1e7cfb37
commit
ccaa75ec53
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user