mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user