Comment #3 on issue 230 by [email protected]: "Vim: Caught deadly
signal SEGV"
http://code.google.com/p/vim/issues/detail?id=230
I can sometimes reproduce it. This patch fixes the crash for me:
diff --git a/src/window.c b/src/window.c
--- a/src/window.c
+++ b/src/window.c
@@ -4721,6 +4721,8 @@ win_alloc_lines(wp)
win_free_lsize(wp)
win_T *wp;
{
+ if (wp == NULL)
+ return;
vim_free(wp->w_lines);
wp->w_lines = NULL;
}
There is however some other strange going on. Half of the times I run
./vim -N -g -f --noplugin -u /tmp/vimrc file.c
the window opens fine, but Vim seems to get confused about the screensize.
The last line is not drawn correctly. If I do :set number, it jumps from 26
in the second last line to 32 in the last line.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.