Fixed a stack overflow bug in the memory manager.

Updated SOIL2.

--HG--
branch : dev
This commit is contained in:
Martí­n Lucas Golini
2017-03-21 01:49:50 -03:00
parent 03080c4478
commit 18033b0c3d

View File

@@ -47,7 +47,7 @@ class EE_API MemoryManager {
template<class T>
static T * free( T * Data ) {
free( Data );
::free( Data );
return Data;
}