]> git.llucax.com Git - z.facultad/75.29/dale.git/blobdiff - src/number.h
Bugfix en esMenorEnModuloQue que hacia que se viole el segmento.
[z.facultad/75.29/dale.git] / src / number.h
index bc1e5c2cd573fc0863d775564549f299dba55f0c..98d0f4558c77cc5f831d217aeb6eeeb5e4128999 100644 (file)
@@ -404,7 +404,7 @@ bool number< N, E >::menorEnModuloQue(const number< N, E >& n) const
                // Recorro los bytes más significativos (que tiene sólo n)
                for (i = chunk.size(); i < n.chunk.size(); ++i)
                {
-                       if (chunk[i] != 0) // Si n tiene algo distinto a 0
+                       if (n.chunk[i] != 0) // Si n tiene algo distinto a 0
                        {
                                return true; // Entonces soy más chico
                        }