version 1.5, 2010/03/09 10:18:48
|
version 1.19.2.1, 2011/04/11 13:02:24
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.0.13 |
RPL/2 (R) version 4.0.22 |
Copyright (C) 1989-2010 Dr. BERTRAND Joël |
Copyright (C) 1989-2011 Dr. BERTRAND Joël |
|
|
This file is part of RPL/2. |
This file is part of RPL/2. |
|
|
Line 20
|
Line 20
|
*/ |
*/ |
|
|
|
|
#include "rpl.conv.h" |
#include "rpl-conv.h" |
|
|
|
|
/* |
/* |
Line 816 instruction_row_plus(struct_processus *s
|
Line 816 instruction_row_plus(struct_processus *s
|
return; |
return; |
} |
} |
|
|
if (position == (integer8) (*((struct_matrice *) |
if (position != ((integer8) (*((struct_matrice *) |
(*s_objet_argument_3).objet)).nombre_lignes) |
(*s_objet_argument_3).objet)).nombre_lignes + 1)) |
{ |
{ |
for(j = i = 0; i < (*((struct_matrice *) |
for(j = i = 0; i < (*((struct_matrice *) |
(*s_objet_argument_3).objet)).nombre_lignes; i++) |
(*s_objet_argument_3).objet)).nombre_lignes; i++) |
Line 853 instruction_row_plus(struct_processus *s
|
Line 853 instruction_row_plus(struct_processus *s
|
} |
} |
else |
else |
{ |
{ |
|
free((*((struct_matrice *) (*s_objet_argument_3).objet)).tableau[0]); |
|
|
if (((*((struct_matrice *) (*s_objet_argument_3).objet)).tableau |
if (((*((struct_matrice *) (*s_objet_argument_3).objet)).tableau |
= malloc(sizeof(void *))) == NULL) |
= malloc(sizeof(void *))) == NULL) |
{ |
{ |