From 3bb5abf0fab1c412947b4a4dc95398ca4f6bcb97 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 2 Apr 2008 19:57:41 +0000 Subject: [PATCH] - scheduler: bug fix for case when app version XML is > 64KB svn path=/trunk/boinc/; revision=15008 --- checkin_notes | 6 ++++++ sched/server_types.C | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index a909e016ba..569b615c13 100644 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/sched/server_types.C b/sched/server_types.C index 42c4101933..d40a47784e 100644 --- a/sched/server_types.C +++ b/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);