matrix.c:2527: read uninit data ?
Status: Beta
Brought to you by:
olikraus
:matrix.c:2527:43: warning: variable 'field' is uninitialized when used here [-Wuninitialized]
for (f_col = sparse->colptr_first; f_col !=NULL && rtc >= 0; f_col = f_col->colptr_next)
if (!maRowInsertField(indep_cols, field->col_no))
Maybe better code
for (f_col = sparse->colptr_first; f_col !=NULL && rtc >= 0; f_col = f_col->colptr_next)
if (!maRowInsertField(indep_cols, f_col->col_no))