commit | d9462e394a582b2698e13648c95acf22322ee766 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Apr 11 21:35:11 2011 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Apr 11 21:35:11 2011 +0200 |
tree | af599d1593650fcac4b64dfd3503836ce0e10070 | |
parent | ef9d6aa70d68cd3a765ed55f4c3781aeb8aeea23 [diff] [blame] |
updated for version 7.3.161 Problem: Items on the stack may be too big. Solution: Make items static or allocate them.
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 54e4f07..78460fb 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c
@@ -1492,7 +1492,7 @@ buf_T *buf; int checkall; /* may abandon all changed buffers */ { - char_u buff[IOSIZE]; + char_u buff[DIALOG_MSG_SIZE]; int ret; buf_T *buf2;