@@ -97,11 +97,11 @@ } allocFailedException; uint32_t of_hash_seed; void * -of_malloc(size_t count, size_t size) +of_alloc(size_t count, size_t size) { void *pointer; if OF_UNLIKELY (count == 0 || size == 0) return NULL; @@ -115,11 +115,11 @@ return pointer; } void * -of_calloc(size_t count, size_t size) +of_alloc_zeroed(size_t count, size_t size) { void *pointer; if OF_UNLIKELY (count == 0 || size == 0) return NULL;