Menu

#3 matrix.c:2527: read uninit data ?

v1.0_(example)
open
nobody
None
5
2015-05-13
2015-05-13
dcb
No

: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))

Discussion


Log in to post a comment.

MongoDB Logo MongoDB