Diff for /rpl/src/allocateur.c between versions 1.11 and 1.28

version 1.11, 2015/09/18 13:41:07 version 1.28, 2023/08/07 17:42:48
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.23    RPL/2 (R) version 4.1.35
   Copyright (C) 1989-2015 Dr. BERTRAND Joël    Copyright (C) 1989-2023 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 287  allocation_buffer(struct_processus *s_et Line 287  allocation_buffer(struct_processus *s_et
   
     if (longueur == 0)      if (longueur == 0)
     {      {
         if (((*s_buffer).buffer = sys_malloc(0)) == NULL)          if (((*s_buffer).buffer = sys_malloc(sizeof(struct_buffer *))) == NULL)
         {          {
             (*s_etat_processus).erreur_systeme =              (*s_etat_processus).erreur_systeme =
                     d_es_allocation_memoire;                      d_es_allocation_memoire;
Line 562  sys_free(void *ptr) Line 562  sys_free(void *ptr)
     return;      return;
 }  }
   
   void *
   sys_realloc(void *ptr, size_t s)
   {
       return(realloc(ptr, s));
   }
   
 // vim: ts=4  // vim: ts=4

Removed from v.1.11  
changed lines
  Added in v.1.28


CVSweb interface <joel.bertrand@systella.fr>