- scheduler: bug fix for case when app version XML is > 64KB

svn path=/trunk/boinc/; revision=15008
This commit is contained in:
David Anderson 2008-04-02 19:57:41 +00:00
parent b33276bee3
commit 3bb5abf0fa
2 changed files with 7 additions and 1 deletions

View File

@ -3015,3 +3015,9 @@ David April 2 2008
single_job_assimilator.C single_job_assimilator.C
tools/ tools/
backend_lib.h backend_lib.h
David April 2 2008
- scheduler: bug fix for case when app version XML is > 64KB
sched/
server_types.C

View File

@ -833,7 +833,7 @@ int APP::write(FILE* fout) {
} }
int APP_VERSION::write(FILE* fout) { int APP_VERSION::write(FILE* fout) {
char buf[BLOB_SIZE]; char buf[APP_VERSION_XML_BLOB_SIZE];
unsigned int i; unsigned int i;
strcpy(buf, xml_doc); strcpy(buf, xml_doc);