mirror of https://github.com/BOINC/boinc.git
lib: fix unmatched parentheses which confused source file editor
This commit is contained in:
parent
d6accd5437
commit
6550c6927a
|
@ -6250,6 +6250,9 @@ David 17 Oct 2012
|
|||
|
||||
Charlie 18 Oct 2012
|
||||
- MGR: Fix bug which can cause Manager to quit when started in Simple View.
|
||||
- lib: fix unmatched parentheses which confused source file editor.
|
||||
|
||||
clientgui/
|
||||
sg_TaskPanel.cpp
|
||||
lib/
|
||||
gui_rpc_client_ops.cpp
|
||||
|
|
|
@ -598,7 +598,7 @@ int RESULT::parse(XML_PARSER& xp) {
|
|||
#if 0
|
||||
if (xp.match_tag("stderr_out")) {
|
||||
char buf[65536];
|
||||
xp.element_contents(("</stderr_out>", buf);
|
||||
xp.element_contents("</stderr_out>", buf);
|
||||
stderr_out = buf;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue