X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMEDLoader%2FMEDFileBasis.cxx;h=6daa7de811d918ecd1cebf4ab381cc9bc146681d;hb=97ace34a0d092b676228a0ab6cb5abefa9637e32;hp=bdc288e89a8b7d26692259490ec0c535dc96a0e0;hpb=fb6ad3f990cf8c26e23ff4f6ed571d85dc738aac;p=tools%2Fmedcoupling.git diff --git a/src/MEDLoader/MEDFileBasis.cxx b/src/MEDLoader/MEDFileBasis.cxx index bdc288e89..6daa7de81 100644 --- a/src/MEDLoader/MEDFileBasis.cxx +++ b/src/MEDLoader/MEDFileBasis.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D +// Copyright (C) 2007-2019 CEA/DEN, EDF R&D // // 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); }