minor bugfix: handled a previously uncaught exception
This commit is contained in:
parent
a2608bc924
commit
5b73729be2
1 changed files with 6 additions and 1 deletions
|
@ -611,7 +611,12 @@ GLiveSupport :: logout(void) throw ()
|
|||
storeWindowPositions();
|
||||
windowPositions.clear();
|
||||
|
||||
try {
|
||||
authentication->logout(sessionId);
|
||||
} catch (XmlRpcException &e) {
|
||||
std::cerr << "error in GLiveSupport::logout: "
|
||||
<< e.what() << std::endl;
|
||||
}
|
||||
sessionId.reset();
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue