diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-30 17:51:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-30 17:51:51 +0200 |
commit | e057d40d967a8223a34fe5b56ffb00dfd06e4cd4 (patch) | |
tree | 3c14b2bf97d6bb23721a33dfba7704b5fa91f6b5 /src/gui_gtk_x11.c | |
parent | 5a4d51e6929b1bb615eaf212a091384cc266b8d7 (diff) | |
download | vim-git-e057d40d967a8223a34fe5b56ffb00dfd06e4cd4.tar.gz |
updated for version 7.3.1278v7.3.1278
Problem: When someone sets the screen size to a huge value with "stty" Vim
runs out of memory before reducing the size.
Solution: Limit Rows and Columns in more places.
Diffstat (limited to 'src/gui_gtk_x11.c')
-rw-r--r-- | src/gui_gtk_x11.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 853947c1b..05295bf08 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -3698,6 +3698,7 @@ gui_mch_open(void) p_window = h - 1; Rows = h; } + limit_screen_size(); pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width); pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height); |