Commit b26f84cb authored by Ulf Möller's avatar Ulf Möller
Browse files

last commit was wrong. Now it works. :)

parent 0dba0613
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -786,9 +786,9 @@ int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b,

	if (dl < 0)
		{
		for (i=-dl; i<0; i++)
		for (i=dl; i<0; i++)
			{
			if (b[n+i] != 0)
			if (b[n-i] != 0)
				return -1; /* a < b */
			}
		}