* grub-core/font/font.c (grub_font_construct_glyph): Fix memory leak.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-05-04 13:11:57 +02:00
parent 8cec7bd40b
commit 82ae74d7bd
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2013-05-04 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/font/font.c (grub_font_construct_glyph): Fix memory leak.
2013-05-03 Andrey Borzenkov <arvidjaar@gmail.com>
Rename grub-core/tests/checksums.c into grub-core/tests/checksums.h

View file

@ -1544,6 +1544,8 @@ grub_font_construct_glyph (grub_font_t hinted_font,
blit_comb (glyph_id, glyph, NULL, main_glyph, combining_glyphs, NULL);
grub_free (combining_glyphs);
return glyph;
}