* grub-core/font/font.c (grub_font_construct_glyph): Fix memory leak.
This commit is contained in:
parent
8cec7bd40b
commit
82ae74d7bd
2 changed files with 6 additions and 0 deletions
|
@ -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>
|
2013-05-03 Andrey Borzenkov <arvidjaar@gmail.com>
|
||||||
|
|
||||||
Rename grub-core/tests/checksums.c into grub-core/tests/checksums.h
|
Rename grub-core/tests/checksums.c into grub-core/tests/checksums.h
|
||||||
|
|
|
@ -1544,6 +1544,8 @@ grub_font_construct_glyph (grub_font_t hinted_font,
|
||||||
|
|
||||||
blit_comb (glyph_id, glyph, NULL, main_glyph, combining_glyphs, NULL);
|
blit_comb (glyph_id, glyph, NULL, main_glyph, combining_glyphs, NULL);
|
||||||
|
|
||||||
|
grub_free (combining_glyphs);
|
||||||
|
|
||||||
return glyph;
|
return glyph;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue