Commit f5f7dffd authored by Richard Levitte's avatar Richard Levitte
Browse files

Make sure to compare unsigned against unsigned.

parent edd55d08
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -706,7 +706,7 @@ void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n,

		/* The overflow will stop before we over write
		 * words we should not overwrite */
		if (ln < c1)
		if (ln < (BN_ULONG)c1)
			{
			do	{
				p++;