Diff for /rpl/src/formateur.c between versions 1.85 and 1.86

version 1.85, 2017/07/02 22:28:20 version 1.86, 2017/07/11 16:04:53
Line 3307  formateur(struct_processus *s_etat_proce Line 3307  formateur(struct_processus *s_etat_proce
             strcat(chaine, " ]");              strcat(chaine, " ]");
         }          }
     }      }
       else if ((*s_objet).type == NON)
       {
           if ((chaine = malloc((strlen("System object") + 1)
                   * sizeof(unsigned char))) == NULL)
           {
               (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
               return(NULL);
           }
   
           strcpy(chaine, "System object");
       }
     else if ((*s_objet).type == EXT)      else if ((*s_objet).type == EXT)
     {      {
         if ((__type_disp = dlsym((*s_objet).descripteur_bibliotheque,          if ((__type_disp = dlsym((*s_objet).descripteur_bibliotheque,
Line 3318  formateur(struct_processus *s_etat_proce Line 3329  formateur(struct_processus *s_etat_proce
                     * sizeof(unsigned char))) == NULL)                      * sizeof(unsigned char))) == NULL)
             {              {
                 (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;                  (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   return(NULL);
             }              }
   
             strcpy(chaine, "External symbol");              strcpy(chaine, "External symbol");

Removed from v.1.85  
changed lines
  Added in v.1.86


CVSweb interface <joel.bertrand@systella.fr>