X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMEDLoader%2FMEDFileBasis.cxx;h=b421a5a07b5276cc1d5db7e565d64767ad4a463e;hb=3ccbd6672d4cab9ddd873774deb1276b43ccb621;hp=f2027df3d6eda5111175ade8d3f27c2e5a6d94bb;hpb=5da72d398d0eb1820c3ce6dd90b8579b6b14edf5;p=tools%2Fmedcoupling.git diff --git a/src/MEDLoader/MEDFileBasis.cxx b/src/MEDLoader/MEDFileBasis.cxx index f2027df3d..b421a5a07 100644 --- a/src/MEDLoader/MEDFileBasis.cxx +++ b/src/MEDLoader/MEDFileBasis.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D +// Copyright (C) 2007-2024 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -34,11 +34,16 @@ MEDFileString::~MEDFileString() delete [] _content; } +void MEDFileString::clear() +{ + std::fill(_content,_content+_max_lgth+1,'\0'); +} + void MEDFileString::set(const char *s) { if((int)strlen(s)>_max_lgth) throw INTERP_KERNEL::Exception("Name is too long to be stored in MEDfile !"); - std::fill(_content,_content+_max_lgth+1,'\0'); + clear(); strcpy(_content,s); }