mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[pool] Don't clear unused memory
This commit is contained in:
parent
6129702eb8
commit
e4b2d9c3f3
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ struct hb_pool_t
|
|||
if (unlikely (!next))
|
||||
{
|
||||
if (unlikely (!chunks.alloc (chunks.length + 1))) return nullptr;
|
||||
chunk_t *chunk = (chunk_t *) hb_calloc (1, sizeof (chunk_t));
|
||||
chunk_t *chunk = (chunk_t *) hb_malloc (sizeof (chunk_t));
|
||||
if (unlikely (!chunk)) return nullptr;
|
||||
chunks.push (chunk);
|
||||
next = chunk->thread ();
|
||||
|
|
Loading…
Add table
Reference in a new issue