Diff for /rpl/src/instructions_c8.c between versions 1.4 and 1.6

version 1.4, 2013/02/27 15:44:15 version 1.6, 2013/02/27 17:11:41
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.12    RPL/2 (R) version 4.1.13
   Copyright (C) 1989-2013 Dr. BERTRAND Joël    Copyright (C) 1989-2013 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
Line 1755  instruction_cipher(struct_processus *s_e Line 1755  instruction_cipher(struct_processus *s_e
             return;              return;
         }          }
   
         if (((*(*l_element_courant).donnee).objet = malloc(          if (((*(*l_element_courant).donnee).objet =
                 (strlen(algorithme_chiffrement) + 1) * sizeof(unsigned char)))                  conversion_majuscule(algorithme_chiffrement)) == NULL)
                 == NULL)  
         {          {
             (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;              (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
             return;              return;
         }          }
   
         strcpy((*(*l_element_courant).donnee).objet, algorithme_chiffrement);  
   
         // Clef          // Clef
   
         if (((*l_element_courant).suivant = allocation_maillon(          if (((*l_element_courant).suivant = allocation_maillon(

Removed from v.1.4  
changed lines
  Added in v.1.6


CVSweb interface <joel.bertrand@systella.fr>