From bf5f9812aae672b32e035981842bb2b76348be6f Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Thu, 18 May 2023 15:50:39 -0400 Subject: [PATCH] remove duplicate check for preexisting data segment --- protocol/esta/acn/pdu.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/protocol/esta/acn/pdu.h b/protocol/esta/acn/pdu.h index ddc2f29..5e4effc 100644 --- a/protocol/esta/acn/pdu.h +++ b/protocol/esta/acn/pdu.h @@ -213,8 +213,6 @@ public: */ template void createDataBlock() { - if (data_) - return; // already has a data segment createData>(); if (data_) { auto block = std::static_pointer_cast>(data_);