瀏覽代碼

Fixes memory leak in text.c

GenImageFontAtlas() allocates an array of stbrp_rect for the packing functions, but it never frees them.
pull/659/head
noshbar 6 年之前
父節點
當前提交
ec6b21bd91
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. +1
    -0
      src/text.c

+ 1
- 0
src/text.c 查看文件

@ -527,6 +527,7 @@ Image GenImageFontAtlas(CharInfo *chars, int charsCount, int fontSize, int paddi
else TraceLog(LOG_WARNING, "Character could not be packed: %i", i);
}
free(rects);
free(nodes);
free(context);
}

Loading…
取消
儲存