Diff for /rpl/src/transliteration.c between versions 1.100 and 1.103

version 1.100, 2019/02/09 13:36:43 version 1.103, 2020/03/17 15:30:51
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.31    RPL/2 (R) version 4.1.32
   Copyright (C) 1989-2019 Dr. BERTRAND Joël    Copyright (C) 1989-2020 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 890  readline_wrapper(struct_processus *s_eta Line 890  readline_wrapper(struct_processus *s_eta
         return(NULL);          return(NULL);
     }      }
   
     if ((rpl_chaine = rpl_malloc(s_etat_processus, (strlen(sys_chaine) + 1) *      if ((rpl_chaine = malloc((strlen(sys_chaine) + 1) *
             sizeof(unsigned char *))) == NULL)              sizeof(unsigned char))) == NULL)
     {      {
         sys_free(sys_chaine);          sys_free(sys_chaine);
         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;          (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;

Removed from v.1.100  
changed lines
  Added in v.1.103


CVSweb interface <joel.bertrand@systella.fr>