(VITA) Fix free block

This commit is contained in:
Francisco José García García 2016-08-14 19:30:54 +02:00
parent 5051773104
commit d4e60565d5
1 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* /*
libco.arm (2015-06-18) libco.arm (2016-08-14)
author: byuu author: frangarcj
license: public domain license: public domain
*/ */
@ -104,7 +104,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void)) {
void co_delete(cothread_t handle) { void co_delete(cothread_t handle) {
free(handle); free(handle);
sceKernelFreeMemBlock(block);
} }
void co_switch(cothread_t handle) { void co_switch(cothread_t handle) {