Zero-initialize structure to avoid returning undefined

The compiler will otherwise complain that we are returning undefined
data. There is no way for the client code to know whether this was
the case.
This commit is contained in:
Roland Kaufmann 2013-07-05 10:59:52 +02:00
parent f99377ceec
commit baa9bf12e0

View File

@ -56,7 +56,7 @@ namespace Opm
const_cast<double*>(sa)
};
call_UMFPACK(&A, rhs, solution);
LinearSolverReport rep;
LinearSolverReport rep = {0};
rep.converged = true;
return rep;
}