diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b66b6cc4f..5bf06fb88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Improvement: If we fail to create the server mutex, gracefully report the problem and exit without sending error to Sentry - Improvement: Excluded folder names are now matched by folder name in subfolders in addition to root level folders - Bugfix: Upstream propagation of Put operations would not retain the overwrite cache policy if it was used +- Bugfix: `zen oplog-download` failed to initialize build part id causing it to fail to download the build part ## 5.7.15 - Feature: `zen oplog-export`, `zen oplog-import` and `zen oplog-download` now has options to boost workers diff --git a/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h b/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h index 044436509..a07ede6f6 100644 --- a/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h +++ b/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h @@ -56,7 +56,7 @@ private: const Oid m_BuildId; const Options m_Options; - Oid m_BuildPartId; + Oid m_BuildPartId = Oid::Zero; CbObject m_BuildObject; CbObject m_BuildPartsObject; CbObject m_OpsSectionObject; |