*** empty log message ***

svn path=/trunk/boinc/; revision=10708
This commit is contained in:
David Anderson 2006-07-20 22:52:57 +00:00
parent dd7e33f5d9
commit 894726670f
2 changed files with 10 additions and 2 deletions

View File

@ -7770,9 +7770,16 @@ David 20 July 2006
log_flags.C,h
David 20 July 2006
- core client: fix crashing if client state file has
- core client: fix crash if client state file has
<project_files> for a project with no account file.
Also shuffled logic of state file parsing to reduce indentation
client/
cs_statefile.C
David 20 July 2006
- core client: fix crash if use <guirpc_debug/> flag,
and some GUI RPC reply is long (> 8K chars)
client/
gui_rpc_server_ops.C

View File

@ -950,12 +950,13 @@ int GUI_RPC_CONN::handle_rpc() {
mf.printf("</boinc_gui_rpc_reply>\n\003");
m.get_buf(p, n);
if (p) {
send(sock, p, n, 0);
if (log_flags.guirpc_debug) {
if (n > 1000) p[1000] = 0;
msg_printf(0, MSG_INFO,
"GUI RPC reply: '%s'\n", p
);
}
send(sock, p, n, 0);
free(p);
}