From: Vladimir Testov Date: Wed, 9 Oct 2013 06:44:11 +0000 (+0400) Subject: * grub-core/gfxmenu/gui_list.c (list_destroy): Fixed memory leak. X-Git-Tag: grub-2.02-beta1~738 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e9e5dc98bb3b2db04310b20b43b5fb7784b09a6;p=thirdparty%2Fgrub.git * grub-core/gfxmenu/gui_list.c (list_destroy): Fixed memory leak. --- diff --git a/ChangeLog b/ChangeLog index 4643f5e10..2794bad2d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-10-09 Vladimir Testov + + * grub-core/gfxmenu/gui_list.c (list_destroy): Fixed memory leak. + 2013-10-09 Vladimir Serbinenko Move OS-dependent file definitions to include/grub/osdep/hostfile*.h. diff --git a/grub-core/gfxmenu/gui_list.c b/grub-core/gfxmenu/gui_list.c index c9e7bf35b..9fee16f92 100644 --- a/grub-core/gfxmenu/gui_list.c +++ b/grub-core/gfxmenu/gui_list.c @@ -97,6 +97,7 @@ list_destroy (void *vself) if (self->scrollbar_frame) self->scrollbar_frame->destroy (self->scrollbar_frame); grub_free (self->scrollbar_thumb_pattern); + grub_free (self->scrollbar_frame_pattern); grub_free (self); }