Diff for /rpl/src/bibliotheques_externes.c between versions 1.77 and 1.78

version 1.77, 2018/05/30 09:27:30 version 1.78, 2018/12/21 10:56:11
Line 376  chargement_bibliotheque(struct_processus Line 376  chargement_bibliotheque(struct_processus
     {      {
         if ((fleche = strstr(tableau[i], "->")) != NULL)          if ((fleche = strstr(tableau[i], "->")) != NULL)
         {          {
             strncpy(fleche, "to", 2);              memcpy(fleche, "to", 2);
             (*s_etat_processus).s_instructions_externes[(*s_etat_processus)              (*s_etat_processus).s_instructions_externes[(*s_etat_processus)
                     .nombre_instructions_externes].position_fleche =                      .nombre_instructions_externes].position_fleche =
                     fleche - tableau[i];                      fleche - tableau[i];
Line 926  execution_fonction_de_bibliotheque(struc Line 926  execution_fonction_de_bibliotheque(struc
   
     if ((fleche = strstr(nom_fonction, "->")) != NULL)      if ((fleche = strstr(nom_fonction, "->")) != NULL)
     {      {
         strncpy(fleche, "to", 2);          memcpy(fleche, "to", 2);
     }      }
   
     ordre_iteration = 0;      ordre_iteration = 0;

Removed from v.1.77  
changed lines
  Added in v.1.78


CVSweb interface <joel.bertrand@systella.fr>