~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/evp/bio_b64.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051213213742-d0ydaylf80l16bj1
Tags: upstream-0.9.8a
ImportĀ upstreamĀ versionĀ 0.9.8a

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
                {
166
166
                i=ctx->buf_len-ctx->buf_off;
167
167
                if (i > outl) i=outl;
168
 
                OPENSSL_assert(ctx->buf_off+i < sizeof ctx->buf);
 
168
                OPENSSL_assert(ctx->buf_off+i < (int)sizeof(ctx->buf));
169
169
                memcpy(out,&(ctx->buf[ctx->buf_off]),i);
170
170
                ret=i;
171
171
                out+=i;