Jack Lloyd wrote:
In dsa_gen.c:

  for (i = qsize-1; i >= 0; i--)
      {
      buf[i]++;
      if (buf[i] != 0)
         break;
      }

i is a size_t, so the expression i >= 0 is always true.

true ... 'i' is now a 'int' again.

Thanks,
Nils
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       openssl-dev@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to