]> git.llucax.com Git - z.facultad/75.29/dale.git/commitdiff
Bugfix en esMenorEnModuloQue que hacia que se viole el segmento. master darcs_import
authorLeandro Lucarella <luca@llucax.hn.org>
Wed, 19 Oct 2005 05:51:05 +0000 (05:51 +0000)
committerLeandro Lucarella <luca@llucax.hn.org>
Wed, 19 Oct 2005 05:51:05 +0000 (05:51 +0000)
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
                        }