Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/blenlib/intern/BLI_memarena.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/BLI_memarena.c b/source/blender/blenlib/intern/BLI_memarena.c
index 39f36c88ff6..f81cbfbe6c4 100644
--- a/source/blender/blenlib/intern/BLI_memarena.c
+++ b/source/blender/blenlib/intern/BLI_memarena.c
@@ -31,6 +31,8 @@
* Efficient memory allocation for lots of similar small chunks.
*/
+#include <stdlib.h>
+
#include "MEM_guardedalloc.h"
#include "BLI_blenlib.h"
@@ -55,7 +57,7 @@ MemArena *BLI_memarena_new(int bufsize) {
return ma;
}
void BLI_memarena_free(MemArena *ma) {
- BLI_linklist_free(ma->bufs, (void(*)(void*)) MEM_freeN);
+ BLI_linklist_free(ma->bufs, (void(*)(void*)) free);
MEM_freeN(ma);
}
@@ -69,9 +71,9 @@ void *BLI_memarena_alloc(MemArena *ma, int size) {
* size up to multiple of 8 */
size= PADUP(size, 8);
- if (size>=ma->cursize) {
+ if (size>ma->cursize) {
ma->cursize= (size>ma->bufsize)?size:ma->bufsize;
- ma->curbuf= MEM_mallocN(ma->cursize, "ma->curbuf");
+ ma->curbuf= malloc(ma->cursize);
BLI_linklist_prepend(&ma->bufs, ma->curbuf);
}