Diff for /rpl/src/instructions_s1.c between versions 1.65 and 1.66

version 1.65, 2013/03/21 11:30:30 version 1.66, 2013/03/21 12:07:38
Line 4109  instruction_syseval(struct_processus *s_ Line 4109  instruction_syseval(struct_processus *s_
             longueur_tampon = (integer8) strlen(tampon);              longueur_tampon = (integer8) strlen(tampon);
   
             for(i = 0, ptr = tampon, nombre_lignes = 0;              for(i = 0, ptr = tampon, nombre_lignes = 0;
                     i < (long) longueur_tampon; i++, ptr++)                      i < longueur_tampon; i++, ptr++)
             {              {
                 if ((*ptr) == d_code_retour_chariot)                  if ((*ptr) == d_code_retour_chariot)
                 {                  {
Line 4143  instruction_syseval(struct_processus *s_ Line 4143  instruction_syseval(struct_processus *s_
                 l_element_courant = (struct_liste_chainee *)                  l_element_courant = (struct_liste_chainee *)
                         (*s_objet_resultat).objet;                          (*s_objet_resultat).objet;
   
                 for(i = 0, ptr = tampon; i < (long) nombre_lignes; i++)                  for(i = 0, ptr = tampon; i < nombre_lignes; i++)
                 {                  {
                     if (((*l_element_courant).donnee =                      if (((*l_element_courant).donnee =
                             allocation(s_etat_processus, CHN)) == NULL)                              allocation(s_etat_processus, CHN)) == NULL)

Removed from v.1.65  
changed lines
  Added in v.1.66


CVSweb interface <joel.bertrand@systella.fr>