From cda313776e0c567dffdafb217ddda01c99d97416 Mon Sep 17 00:00:00 2001 From: Jean-Luc Fattebert Date: Mon, 25 Mar 2024 07:04:36 -0700 Subject: [PATCH] Fix issue with uninitialized variables Was causing issues only on LLNL systems --- source/QuatModelParameters.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/QuatModelParameters.cc b/source/QuatModelParameters.cc index 9087574e..29b7ffab 100644 --- a/source/QuatModelParameters.cc +++ b/source/QuatModelParameters.cc @@ -976,6 +976,8 @@ void QuatModelParameters::readModelParameters( d_moving_frame_upwind = db->getBoolWithDefault("upwind", false); } else { d_moving_frame_velocity = 0.; + d_moving_frame_adapt = false; + d_moving_frame_upwind = false; } if (with_third_phase()) initializeEta(model_db);