mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-21 15:50:10 +00:00
* grub-core/font/font.c (grub_font_construct_glyph): Fix memory leak.
This commit is contained in:
parent
8cec7bd40b
commit
82ae74d7bd
@ -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 New Issue
Block a user