all repos — tint2 @ 4d5b3958d2f0499c184378efc12537a47f31de93

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

fixed memory leak

git-svn-id: http://tint2.googlecode.com/svn/trunk@190 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
lorthiois@bbsoft.fr lorthiois@bbsoft.fr@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

4d5b3958d2f0499c184378efc12537a47f31de93

parent

b3e399b3d25de66f73949bd5373206a72d542467

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/taskbar/task.csrc/taskbar/task.c

@@ -200,11 +200,10 @@ int length = w * h;

for (i = 0; i < length; ++i) icon_data[i] = tmp_data[i]; img = imlib_create_image_using_data (w, h, icon_data); + free(icon_data); #else img = imlib_create_image_using_data (w, h, (DATA32*)tmp_data); #endif - imlib_context_set_image(img); - imlib_image_set_has_alpha(1); XFree (data); } else {

@@ -233,6 +232,7 @@ }

// transform icons imlib_context_set_image(img); + imlib_image_set_has_alpha(1); tsk->icon = imlib_create_cropped_scaled_image(0, 0, imlib_image_get_width(), imlib_image_get_height(), panel->g_task.icon_size1, panel->g_task.icon_size1); imlib_free_image();