Explorar o código

Fixes memory leak in text.c

GenImageFontAtlas() allocates an array of stbrp_rect for the packing functions, but it never frees them.
noshbar %!s(int64=7) %!d(string=hai) anos
pai
achega
ec6b21bd91
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  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);
     }