minor bugfix: handled a previously uncaught exception
This commit is contained in:
parent
a2608bc924
commit
5b73729be2
|
@ -611,7 +611,12 @@ GLiveSupport :: logout(void) throw ()
|
||||||
storeWindowPositions();
|
storeWindowPositions();
|
||||||
windowPositions.clear();
|
windowPositions.clear();
|
||||||
|
|
||||||
authentication->logout(sessionId);
|
try {
|
||||||
|
authentication->logout(sessionId);
|
||||||
|
} catch (XmlRpcException &e) {
|
||||||
|
std::cerr << "error in GLiveSupport::logout: "
|
||||||
|
<< e.what() << std::endl;
|
||||||
|
}
|
||||||
sessionId.reset();
|
sessionId.reset();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue