X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fstoresession.cpp;h=55b199a3380bfee054f1152000c7c87c380b55c9;hb=038a14278afb24e10cd59991c2cafd97264fd3a5;hp=4167bdae69e0e174af32d5ecc993a35a1792ea4d;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/storesession.cpp b/pv/storesession.cpp index 4167bda..55b199a 100644 --- a/pv/storesession.cpp +++ b/pv/storesession.cpp @@ -217,10 +217,6 @@ void StoreSession::store_proc(vector< shared_ptr > achannel_li { unsigned progress_scale = 0; - /// TODO: Wrap this in a std::unique_ptr when we transition to C++11 - uint8_t *const ldata = new uint8_t[BlockSize]; - assert(ldata); - int aunit_size = 0; int lunit_size = 0; unsigned int lsamples_per_block = INT_MAX; @@ -278,14 +274,17 @@ void StoreSession::store_proc(vector< shared_ptr > achannel_li } if (lsegment) { - lsegment->get_samples(ldata, start_sample_, start_sample_ + packet_len); + const uint8_t* ldata = + lsegment->get_samples(start_sample_, start_sample_ + packet_len); const size_t length = packet_len * lunit_size; - auto logic = context->create_logic_packet(ldata, length, lunit_size); + auto logic = context->create_logic_packet((void*)ldata, length, lunit_size); const string ldata_str = output_->receive(logic); if (output_stream_.is_open()) output_stream_ << ldata_str; + + delete[] ldata; } } catch (Error error) { error_ = tr("Error while saving: ") + error.what(); @@ -300,12 +299,11 @@ void StoreSession::store_proc(vector< shared_ptr > achannel_li // Zeroing the progress variables indicates completion units_stored_ = unit_count_ = 0; + store_successful(); progress_updated(); output_.reset(); output_stream_.close(); - - delete[] ldata; } } // pv