]> Creatis software - gdcm.git/commitdiff
To prevent some memry leaks
authorjpr <jpr>
Fri, 4 Mar 2005 11:15:56 +0000 (11:15 +0000)
committerjpr <jpr>
Fri, 4 Mar 2005 11:15:56 +0000 (11:15 +0000)
src/gdcmFileHelper.cxx

index c1e1c31147701558d0549b335447a63606a52924..f6f222fa1efbb292b838ffda5a110085743a3b37 100644 (file)
@@ -4,8 +4,8 @@
   Module:    $RCSfile: gdcmFileHelper.cxx,v $
   Language:  C++
 
-  Date:      $Date: 2005/03/04 09:45:04 $
-  Version:   $Revision: 1.25 $
+  Date:      $Date: 2005/03/04 11:15:56 $
+  Version:   $Revision: 1.26 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -1054,10 +1054,16 @@ BinEntry *FileHelper::CopyBinEntry(uint16_t group, uint16_t elem,
    DocEntry *oldE = FileInternal->GetDocEntry(group, elem);
    BinEntry *newE;
 
-   if( oldE )
-      if( oldE->GetVR()!=vr )
-         oldE = NULL;
 
+   if( oldE )  // Is this really usefull?
+      if( oldE->GetVR()!=vr )
+      {
+         //oldE = NULL; 
+      gdcmWarningMacro( " Unconsistent VR for Bin Entry : [" << oldE->GetVR() 
+                        << "] vs [" << vr << "] for " <<
+                        std::hex << group << "|" << elem);
+      delete oldE;
+      } 
    if( oldE )
    {
       newE = new BinEntry(oldE->GetDictEntry());