mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3947
This commit is contained in:
parent
1ca61ba699
commit
0423d6c4d3
|
@ -15474,10 +15474,6 @@ Eric K. July 20 2004
|
|||
|
||||
html/inc/cache.inc
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Rom July 19 2004
|
||||
- Fix a bug where during the benchmarking process all the active tasks
|
||||
would die off.
|
||||
|
@ -15664,3 +15660,11 @@ Eric K. July 22 2004
|
|||
top_hosts.php
|
||||
top_teams.php
|
||||
top_users.php
|
||||
|
||||
Karl 2004-07-23
|
||||
- added argument check to create_work process_wu_template if <file_number>
|
||||
isn't found (otherwise it just silently uses the previous command-line
|
||||
argument as a file_ref!)
|
||||
|
||||
tools/
|
||||
backend_lib.C
|
||||
|
|
|
@ -132,6 +132,10 @@ static int process_wu_template(
|
|||
} else if (parse_str(p, "<open_name>", open_name, sizeof(open_name))) {
|
||||
continue;
|
||||
} else if (match_tag(p, "</file_ref>")) {
|
||||
if (file_number < 0) {
|
||||
fprintf(stderr, "No file number found\n");
|
||||
return ERR_XML_PARSE;
|
||||
}
|
||||
sprintf(buf,
|
||||
"<file_ref>\n"
|
||||
" <file_name>%s</file_name>\n"
|
||||
|
|
Loading…
Reference in New Issue