X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmBinEntry.cxx;h=d0301c5e0ef8a71ff42e26125fd298788c7f3d5c;hb=3c25b6a04715c20b3680bca5447b4f10add258fd;hp=f6645e7b28f5edc9704b6abcb3d7fa964041cbd7;hpb=559c3639fc5b255b36a951f352db1addead9f78f;p=gdcm.git diff --git a/src/gdcmBinEntry.cxx b/src/gdcmBinEntry.cxx index f6645e7b..d0301c5e 100644 --- a/src/gdcmBinEntry.cxx +++ b/src/gdcmBinEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmBinEntry.cxx,v $ Language: C++ - Date: $Date: 2004/11/03 20:52:12 $ - Version: $Revision: 1.35 $ + Date: $Date: 2004/11/16 16:20:23 $ + Version: $Revision: 1.37 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -32,6 +32,7 @@ namespace gdcm BinEntry::BinEntry(DictEntry* e) : ValEntry(e) { BinArea = 0; + SelfArea = true; } /** @@ -49,6 +50,7 @@ BinEntry::BinEntry(DocEntry* e) : ValEntry(e->GetDictEntry()) //SQDepthLevel = e->GetDepthLevel(); BinArea = 0; // let's be carefull ! + SelfArea = true; } /** @@ -56,7 +58,7 @@ BinEntry::BinEntry(DocEntry* e) : ValEntry(e->GetDictEntry()) */ BinEntry::~BinEntry() { - if (BinArea) + if (BinArea && SelfArea) { delete[] BinArea; BinArea = 0; // let's be carefull ! @@ -125,11 +127,13 @@ void BinEntry::Write(std::ofstream* fp, FileType filetype) /// \brief Sets the value (non string) of the current Dicom Header Entry -void BinEntry::SetBinArea( uint8_t* area ) +void BinEntry::SetBinArea( uint8_t* area, bool self ) { - if (BinArea) + if (BinArea && SelfArea) delete[] BinArea; - BinArea = area; + + BinArea = area; + SelfArea=self; } //-----------------------------------------------------------------------------