Revert PATH_MAX change there...PATH_MAX may not be long enough.

SVN revision: 51364
This commit is contained in:
Christopher Michael 2010-08-18 21:49:48 +00:00
parent ff1030a1e5
commit 6e4b7513cb
1 changed files with 1 additions and 1 deletions

View File

@ -736,7 +736,7 @@ _dialog_save_cb(void *data __UNUSED__, void *data2)
FILE *f;
char *text;
char buf[1024];
char buffer[PATH_MAX];
char buffer[4096];
int read_length = 0;
int i, tlen;