From 1a3c1d4b5b3914e6bebc4a7a00f76dddabe4a0f9 Mon Sep 17 00:00:00 2001 From: "Charlton, Scott R" Date: Tue, 22 Oct 2024 16:19:51 -0600 Subject: [PATCH] Fixed uninitialized memory errors --- src/Solution.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Solution.cxx b/src/Solution.cxx index 231db416..b2f4187a 100644 --- a/src/Solution.cxx +++ b/src/Solution.cxx @@ -1396,6 +1396,7 @@ cxxSolution::zero() this->cb = 0.0; this->density = 1.0; this->viscosity = 1.0; + this->viscos_0 = 1.0; this->mass_water = 0.0; this->soln_vol = 0.0; this->total_alkalinity = 0.0;