Kaynağa Gözat

don't leak vertex data if text is scaled to 0

Sean Barrett 9 yıl önce
ebeveyn
işleme
56e8fd063c
1 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  1. 4 1
      stb_truetype.h

+ 4 - 1
stb_truetype.h

@@ -2435,7 +2435,10 @@ STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info
 
    if (scale_x == 0) scale_x = scale_y;
    if (scale_y == 0) {
-      if (scale_x == 0) return NULL;
+      if (scale_x == 0) {
+         STBTT_free(vertices, info->userdata);
+         return NULL;
+      }
       scale_y = scale_x;
    }