From 58c83dcd140137cf5c5808a95e7b0711fa556933 Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Wed, 24 May 2017 23:12:23 -0500 Subject: COMMON: Make SpanOwner copy assignment make a copy of the owned Span To move data from one SpanOwner to another, use `moveFrom`. Thanks @waltervn for pointing out the problem. --- common/span.h | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) (limited to 'common') diff --git a/common/span.h b/common/span.h index 2930003811..e0b1d139ca 100644 --- a/common/span.h +++ b/common/span.h @@ -942,20 +942,21 @@ public: _span.allocateFromSpan(other._span); } - /** - * Transfers ownership of the Span from the other owner to this owner. - * If this owner already holds another Span, the old Span will be destroyed. - */ inline SpanOwner &operator=(SpanOwner &other) { if (this == &other) { return *this; } - if (_span.data()) { - delete[] const_cast::type *>(_span.data()); + delete[] const_cast::type *>(_span.data()); + _span.clear(); + + // Allocating memory when copy-assigning from an unallocated owner + // will break the new owner by making it appear allocated even though + // it doesn't (and shouldn't) contain data + if (other) { + _span.allocateFromSpan(other._span); } - _span = other._span; - other.release(); + return *this; } @@ -963,6 +964,20 @@ public: delete[] const_cast::type *>(_span.data()); } + /** + * Transfers ownership of the Span from the other owner to this owner. + */ + inline SpanOwner &moveFrom(SpanOwner &other) { + if (this == &other) { + return *this; + } + + delete[] const_cast::type *>(_span.data()); + _span = other._span; + other.release(); + return *this; + } + /** * Releases the memory owned by this SpanOwner to the caller. */ -- cgit v1.2.3