From d9462e394a582b2698e13648c95acf22322ee766 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 11 Apr 2011 21:35:11 +0200 Subject: updated for version 7.3.161 Problem: Items on the stack may be too big. Solution: Make items static or allocate them. --- src/ex_cmds2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ex_cmds2.c') diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 54e4f07b81..78460fbf69 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1492,7 +1492,7 @@ dialog_changed(buf, checkall) 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; -- cgit v1.2.3