mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 06:10:15 +00:00
Fix a cornercase crash
If gtk_text_layout_move_cursor_visually is called with a count of 0, we were passing NULL to a free function that can't handle it. Don't do that. https://bugzilla.gnome.org/show_bug.cgi?id=750058
This commit is contained in:
parent
03312371da
commit
02e2f7dc56
@ -3660,6 +3660,7 @@ gtk_text_layout_move_iter_visually (GtkTextLayout *layout,
|
||||
gtk_text_iter_backward_char (iter);
|
||||
}
|
||||
|
||||
if (display)
|
||||
gtk_text_layout_free_line_display (layout, display);
|
||||
|
||||
done:
|
||||
|
Loading…
Reference in New Issue
Block a user