mirror of https://github.com/BOINC/boinc.git
- scheduler: bug fix for case when app version XML is > 64KB
svn path=/trunk/boinc/; revision=15008
This commit is contained in:
parent
b33276bee3
commit
3bb5abf0fa
|
@ -3015,3 +3015,9 @@ David April 2 2008
|
|||
single_job_assimilator.C
|
||||
tools/
|
||||
backend_lib.h
|
||||
|
||||
David April 2 2008
|
||||
- scheduler: bug fix for case when app version XML is > 64KB
|
||||
|
||||
sched/
|
||||
server_types.C
|
||||
|
|
|
@ -833,7 +833,7 @@ int APP::write(FILE* fout) {
|
|||
}
|
||||
|
||||
int APP_VERSION::write(FILE* fout) {
|
||||
char buf[BLOB_SIZE];
|
||||
char buf[APP_VERSION_XML_BLOB_SIZE];
|
||||
unsigned int i;
|
||||
|
||||
strcpy(buf, xml_doc);
|
||||
|
|
Loading…
Reference in New Issue