]> Creatis software - gdcm.git/blobdiff - src/gdcmTS.cxx
BUG: very same bug when using char* instead of string
[gdcm.git] / src / gdcmTS.cxx
index 864367c0b44226b68c9d1e80aecf0d22dc61f1ed..630ed7c6916b3dc0c194754aff58c160309e85d5 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmTS.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/06/21 04:43:02 $
-  Version:   $Revision: 1.19 $
+  Date:      $Date: 2004/06/23 03:36:24 $
+  Version:   $Revision: 1.21 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -41,6 +41,7 @@ gdcmTS::gdcmTS(void)
 
    while (!from.eof()) {
       from >> key;
+
       eatwhite(from);
       getline(from, name);    /// MEMORY LEAK
 
@@ -85,7 +86,7 @@ int gdcmTS::Count(TSKey key)
 std::string gdcmTS::GetValue(TSKey key) 
 {
    if (ts.count(key) == 0) 
-      return (GDCM_UNFOUND);
+      return GDCM_UNFOUND;
    return ts[key];
 }