diff --git a/CHANGES b/CHANGES index f4955a50fa..e078bb2d67 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +8.1.0-dev.101 | 2025-08-20 11:38:37 -0400 + + * Fix Coverity issue with new `Attributes` ctor (Evan Typanski, Corelight) + 8.1.0-dev.99 | 2025-08-19 15:08:35 -0700 * CI: Update CentOS 9 to Python 3.13 (Tim Wojtulewicz, Corelight) diff --git a/VERSION b/VERSION index 9a598c1356..2cb1cdc6d3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.1.0-dev.99 +8.1.0-dev.101 diff --git a/src/Attr.h b/src/Attr.h index 15cb471c20..d1fefa6f5a 100644 --- a/src/Attr.h +++ b/src/Attr.h @@ -114,7 +114,7 @@ public: : Attributes(std::vector{}, std::move(t), in_record, is_global, false) {} Attributes(std::vector a, TypePtr t, bool in_record, bool is_global) - : Attributes(a, std::move(t), in_record, is_global, false) {} + : Attributes(std::move(a), std::move(t), in_record, is_global, false) {} ~Attributes() override = default;