- client: use larger buffer for app command line,

enough to accommodate 64KB from wu.cmdline


svn path=/trunk/boinc/; revision=23324
This commit is contained in:
David Anderson 2011-04-04 18:03:50 +00:00
parent ea06547715
commit fa377295bc
2 changed files with 8 additions and 1 deletions

View File

@ -2108,3 +2108,10 @@ David 4 Apr 2011
client/
cs_notices.cpp
David 4 Apr 2011
- client: use larger buffer for app command line,
enough to accommodate 64KB from wu.cmdline
client/
app_start.cpp

View File

@ -417,7 +417,7 @@ int ACTIVE_TASK::copy_output_files() {
//
int ACTIVE_TASK::start(bool first_time) {
char exec_name[256], file_path[256], buf[256], exec_path[256];
char cmdline[8192];
char cmdline[80000]; // 64KB plus some extra
unsigned int i;
FILE_REF fref;
FILE_INFO* fip;