From aa9c7912dc481de503c4dceff4b0b4acbba77444 Mon Sep 17 00:00:00 2001 From: EyalBrilling <43183029+EyalBrilling@users.noreply.github.com> Date: Fri, 10 Nov 2023 12:36:24 +0200 Subject: [PATCH] fixed possible undefined variable assigment (#6985) --- src/math/polynomial/polynomial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/polynomial/polynomial.cpp b/src/math/polynomial/polynomial.cpp index b85ac1cf592..6c94d9b7204 100644 --- a/src/math/polynomial/polynomial.cpp +++ b/src/math/polynomial/polynomial.cpp @@ -5648,7 +5648,7 @@ namespace polynomial { unsigned d0 = 0; unsigned d1 = n1 - n2; unsigned i = 1; - unsigned n3; + unsigned n3 = 0; S.reset(); while (true) { // Compute Gh_{i+2}