Diff for /rpl/src/transliteration.c between versions 1.102 and 1.108

version 1.102, 2020/01/10 11:15:52 version 1.108, 2024/01/17 16:57:19
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.32    RPL/2 (R) version 4.1.36
   Copyright (C) 1989-2020 Dr. BERTRAND Joël    Copyright (C) 1989-2024 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.102  
changed lines
  Added in v.1.108


CVSweb interface <joel.bertrand@systella.fr>