diff options
author | Francisco José García García | 2016-08-14 19:30:54 +0200 |
---|---|---|
committer | Francisco José García García | 2016-08-14 19:30:54 +0200 |
commit | d4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b (patch) | |
tree | 6bd1d597fc95f350efcbc40522d7ffff41f5f21a | |
parent | 5051773104f5ca1e846858ff543f4438ab662da9 (diff) | |
download | picogpsp-d4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b.tar.gz picogpsp-d4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b.tar.bz2 picogpsp-d4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b.zip |
(VITA) Fix free block
-rw-r--r-- | libco/psp2.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libco/psp2.c b/libco/psp2.c index fc1adf0..3ab1bc7 100644 --- a/libco/psp2.c +++ b/libco/psp2.c @@ -1,6 +1,6 @@ /* - libco.arm (2015-06-18) - author: byuu + libco.arm (2016-08-14) + author: frangarcj license: public domain */ @@ -104,7 +104,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void)) { void co_delete(cothread_t handle) { free(handle); - sceKernelFreeMemBlock(block); } void co_switch(cothread_t handle) { |