Skip to content

Commit defb773

Browse files
committed
Pointers to col/row_index/bound not initialised in part 2 of testIis in TestCAPI.c
1 parent 7fb7a11 commit defb773

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

check/TestCAPI.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2264,10 +2264,10 @@ void testIis() {
22642264
NULL, NULL, NULL,
22652265
NULL);
22662266

2267-
HighsInt* col_index;
2268-
HighsInt* row_index;
2269-
HighsInt* col_bound;
2270-
HighsInt* row_bound;
2267+
HighsInt* col_index = NULL;
2268+
HighsInt* row_index = NULL;
2269+
HighsInt* col_bound = NULL;
2270+
HighsInt* row_bound = NULL;
22712271
HighsInt* col_status = (HighsInt*)malloc(sizeof(HighsInt) * num_col);
22722272
HighsInt* row_status = (HighsInt*)malloc(sizeof(HighsInt) * num_row);
22732273

0 commit comments

Comments
 (0)