X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.cxx;h=0f41bb5c34c044727d834649e42cc579bbd7bf19;hb=912de5d1cc942f7386c83d32c5d847ef5bb2bf17;hp=cc214c63690c40b7094e1c754f1d5b7efa61bed5;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmTS.cxx b/src/gdcmTS.cxx index cc214c63..0f41bb5c 100644 --- a/src/gdcmTS.cxx +++ b/src/gdcmTS.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmTS.cxx,v $ Language: C++ - Date: $Date: 2004/06/20 18:08:48 $ - Version: $Revision: 1.18 $ + Date: $Date: 2004/07/19 15:16:19 $ + Version: $Revision: 1.23 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -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]; 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]; }