fix shape rects leak in e_border

This commit is contained in:
Carsten Haitzler 2013-05-23 21:39:10 +09:00
parent 6ce67eca01
commit b738b9fe5f
1 changed files with 2 additions and 1 deletions

View File

@ -7730,8 +7730,9 @@ _e_border_eval0(E_Border *bd)
bd->client.border.changed = 1;
}
ecore_x_window_shape_input_rectangles_set(bd->win, rects, num);
e_container_shape_input_rects_set(bd->shape, (Eina_Rectangle*)rects, num);
e_container_shape_input_rects_set(bd->shape, (Eina_Rectangle *)rects, num);
}
free(rects);
}
else
{