From: Richard Kreckel Date: Thu, 25 Jan 2018 18:59:00 +0000 (+0100) Subject: Fix previous commit 'Speed up special cases of square-free...'. X-Git-Tag: release_1-7-3~9 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=40234423820294740aa535a713c2784d1bb23351 Fix previous commit 'Speed up special cases of square-free...'. Huh, I swear 4ffb3cbb3 worked for me! Sorry for that. --- diff --git a/ginac/normal.cpp b/ginac/normal.cpp index 9f8b7b4a..747783c6 100644 --- a/ginac/normal.cpp +++ b/ginac/normal.cpp @@ -1802,7 +1802,7 @@ static epvector sqrfree_yun(const ex &a, const symbol &x) do { w = quo(w, g, x); if (w.is_zero()) { - return res; + return results; } z = quo(z, g, x) - w.diff(x); exponent = exponent + 1;