X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.cxx;h=152aaebb91b9b4f7d09fbd995b4b02d9ab318513;hb=64f79e8efbfae49231d1f469aa4fcc4acf0da70c;hp=864367c0b44226b68c9d1e80aecf0d22dc61f1ed;hpb=6b91390e1086959c40c0ae9a37912877a6f14c36;p=gdcm.git diff --git a/src/gdcmTS.cxx b/src/gdcmTS.cxx index 864367c0..152aaebb 100644 --- a/src/gdcmTS.cxx +++ b/src/gdcmTS.cxx @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmTS.cxx,v $ Language: C++ - Date: $Date: 2004/06/21 04:43:02 $ - Version: $Revision: 1.19 $ + Date: $Date: 2004/09/27 08:39:07 $ + Version: $Revision: 1.24 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or - http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -35,14 +35,14 @@ gdcmTS::gdcmTS(void) std::ifstream from(filename.c_str()); dbg.Error(!from, "gdcmTS::gdcmTS: can't open dictionary",filename.c_str()); - //char buff[1024]; //not used std::string key; std::string name; while (!from.eof()) { from >> key; + eatwhite(from); - getline(from, name); /// MEMORY LEAK + std::getline(from, name); /// MEMORY LEAK if(key!="") { @@ -85,7 +85,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]; }