Changes between Initial Version and Version 2 of Ticket #153
- Timestamp:
- 2015-09-11T12:41:56+02:00 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #153
- Property Owner changed from somebody to maignan
- Property Status changed from new to assigned
-
Ticket #153 – Description
initial v2 21 21 ... 22 22 }}} 23 IF all coefficients of matrix A are negative (which theoretically should not happen but indeed has), the variables col and r aw, which are not properly initialized, may contain any value and thus crash the program if col > n.23 IF all coefficients of matrix A are negative (which theoretically should not happen but indeed has), the variables col and row, which are not properly initialized, may contain any value and thus crash the program if col > n. 24 24 25 25 Thus: 26 - r aw and col have to be initialized (0 value).26 - row and col have to be initialized (0 value). 27 27 - At the end of the loops, at least one of these variables have to be checked, and the code has to be stopped if it is still null. 28 28