mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 18:00:09 +00:00
Fixed GtkCellRendererText invalid pointer access.
Fixed get_desired_size() to not access parameters when NULL and also not to access priv->object if it hasnt yet been assigned.
This commit is contained in:
parent
0fbdb3c73f
commit
894e887370
@ -1946,6 +1946,9 @@ gtk_cell_renderer_text_extended_layout_get_desired_size (GtkExtendedLayout *layo
|
||||
|
||||
priv = GTK_CELL_RENDERER_TEXT_GET_PRIVATE (layout);
|
||||
|
||||
if (priv->owner)
|
||||
{
|
||||
|
||||
if (minimal_size)
|
||||
{
|
||||
get_size (GTK_CELL_RENDERER (layout),
|
||||
@ -1966,6 +1969,21 @@ gtk_cell_renderer_text_extended_layout_get_desired_size (GtkExtendedLayout *layo
|
||||
|
||||
priv->ellipsize = ellipsize;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (minimal_size)
|
||||
{
|
||||
minimal_size->height = 0;
|
||||
minimal_size->width = 0;
|
||||
}
|
||||
|
||||
if (desired_size)
|
||||
{
|
||||
desired_size->height = 0;
|
||||
desired_size->width = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user