Skip to content
Snippets Groups Projects
Unverified Commit 75682c16 authored by Adam Paquette's avatar Adam Paquette Committed by GitHub
Browse files

Fix segfault from spiceclient (#5735)

* Fix segfault from spiceclient

* Updated changelog
parent cb121663
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,7 @@ ctest FunctionalTestJigsawApollo to validate this output. [#5710](https://github
- Fixed SpiceClient to handle redirect requests.
- Fixed jigsaw to default OUTADJUSTMENTH5 option to false and allow this feature to run on read-only images [#5700](https://github.com/DOI-USGS/ISIS3/issues/5700)
- Fixed Cube::fromIsd to add "LineScanTimes" table from HRSC isds [#5668](https://github.com/DOI-USGS/ISIS3/issues/5668)
- Fixed segfault in SpiceClient when an authentication error was encountered. [#5735](https://github.com/DOI-USGS/ISIS3/pull/5735)
## [9.0.0] - 09-25-2024
......
......@@ -371,6 +371,10 @@ namespace Isis {
p_response = new QString();
}
if (!p_error) {
p_error = new QString();
}
*p_error = "Server expects authentication which is not currently ";
*p_error += "supported";
quit();
......@@ -386,6 +390,10 @@ namespace Isis {
p_response = new QString();
}
if (!p_error) {
p_error = new QString();
}
*p_error = "Server expects authentication which is not currently ";
*p_error += "supported";
quit();
......@@ -403,6 +411,10 @@ namespace Isis {
p_response = new QString();
}
if (!p_error) {
p_error = new QString();
}
*p_error = "Server expects authentication which is not currently ";
*p_error += "supported";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment