Loading CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -45,6 +45,7 @@ release. ### Removed ### Fixed - Updated History constructor to check for invalid BLOB before copying History BLOB to output cube [#4966](https://github.com/DOI-USGS/ISIS3/issues/4966) ## [8.0.0] - 2023-04-19 Loading isis/src/base/objs/History/History.cpp +5 −1 Original line number Diff line number Diff line Loading @@ -34,8 +34,12 @@ namespace Isis { char *blob_buffer = blob.getBuffer(); p_bufferSize = blob.Size(); p_histBuffer = new char[p_bufferSize]; if (blob_buffer != NULL) { // Copy existing history memcpy(p_histBuffer, blob_buffer, p_bufferSize); } } //! Destructor Loading Loading
CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -45,6 +45,7 @@ release. ### Removed ### Fixed - Updated History constructor to check for invalid BLOB before copying History BLOB to output cube [#4966](https://github.com/DOI-USGS/ISIS3/issues/4966) ## [8.0.0] - 2023-04-19 Loading
isis/src/base/objs/History/History.cpp +5 −1 Original line number Diff line number Diff line Loading @@ -34,8 +34,12 @@ namespace Isis { char *blob_buffer = blob.getBuffer(); p_bufferSize = blob.Size(); p_histBuffer = new char[p_bufferSize]; if (blob_buffer != NULL) { // Copy existing history memcpy(p_histBuffer, blob_buffer, p_bufferSize); } } //! Destructor Loading