mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-24 16:24:11 +03:00
Merge pull request #4160 from cgohlke/patch-1
Fix segfault: do not destroy glyph while its bitmap is used
This commit is contained in:
commit
b0eb5e18b1
|
@ -890,8 +890,6 @@ font_render(FontObject* self, PyObject* args)
|
||||||
|
|
||||||
bitmap = bitmap_glyph->bitmap;
|
bitmap = bitmap_glyph->bitmap;
|
||||||
left = bitmap_glyph->left;
|
left = bitmap_glyph->left;
|
||||||
|
|
||||||
FT_Done_Glyph(glyph);
|
|
||||||
} else {
|
} else {
|
||||||
bitmap = glyph_slot->bitmap;
|
bitmap = glyph_slot->bitmap;
|
||||||
left = glyph_slot->bitmap_left;
|
left = glyph_slot->bitmap_left;
|
||||||
|
@ -953,6 +951,9 @@ font_render(FontObject* self, PyObject* args)
|
||||||
}
|
}
|
||||||
x += glyph_info[i].x_advance;
|
x += glyph_info[i].x_advance;
|
||||||
y -= glyph_info[i].y_advance;
|
y -= glyph_info[i].y_advance;
|
||||||
|
if (stroker != NULL) {
|
||||||
|
FT_Done_Glyph(glyph);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
FT_Stroker_Done(stroker);
|
FT_Stroker_Done(stroker);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user