]> Creatis software - crea.git/blobdiff - appli/creaSed/creaSed.cpp
Feature #1711
[crea.git] / appli / creaSed / creaSed.cpp
index 41a07ac8335cb33b3098d73ed7376a2c0bc60e71..95ddc729704282a33316ccc52f5671af4f356ed9 100644 (file)
@@ -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 <stdio.h>
 #include <iostream>
@@ -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;