X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=appli%2FcreaSed%2FcreaSed.cpp;h=95ddc729704282a33316ccc52f5671af4f356ed9;hb=b5874457abda388b3501cdfa57476de7c006c4ea;hp=41a07ac8335cb33b3098d73ed7376a2c0bc60e71;hpb=17824854619941a12697fea8524f4218f9a14ef9;p=crea.git diff --git a/appli/creaSed/creaSed.cpp b/appli/creaSed/creaSed.cpp index 41a07ac..95ddc72 100644 --- a/appli/creaSed/creaSed.cpp +++ b/appli/creaSed/creaSed.cpp @@ -4,6 +4,8 @@ # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image # pour la Santé) # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# Previous Authors : Laurent Guigues, Jean-Pierre Roux +# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil # # This software is governed by the CeCILL-B license under French law and # abiding by the rules of distribution of free software. You can use, @@ -20,7 +22,8 @@ # # The fact that you are presently reading this means that you have had # knowledge of the CeCILL-B license and that you accept its terms. -# ------------------------------------------------------------------------ */ +# ------------------------------------------------------------------------ +*/ #include #include @@ -69,8 +72,8 @@ int main(int argc, char **argv) findstring = argv[2]; replacestring = argv[3]; - ffIn = fopen(fileIn.c_str(),"r"); - if (ffIn){ + errno_t errorOpen = fopen_s(&ffIn, fileIn.c_str(),"r"); + if (!errorOpen && ffIn){ while(!feof(ffIn)){ fgets( strTmp , 255, ffIn ); lineStr=strTmp;