Loading crypto/modes/ocb128.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -162,7 +162,7 @@ static OCB_BLOCK *ocb_lookup_l(OCB128_CONTEXT *ctx, size_t idx) if (!ctx->l) if (!ctx->l) return NULL; return NULL; } } while (l_index <= idx) { while (l_index < idx) { ocb_double(ctx->l + l_index, ctx->l + l_index + 1); ocb_double(ctx->l + l_index, ctx->l + l_index + 1); l_index++; l_index++; } } Loading Loading
crypto/modes/ocb128.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -162,7 +162,7 @@ static OCB_BLOCK *ocb_lookup_l(OCB128_CONTEXT *ctx, size_t idx) if (!ctx->l) if (!ctx->l) return NULL; return NULL; } } while (l_index <= idx) { while (l_index < idx) { ocb_double(ctx->l + l_index, ctx->l + l_index + 1); ocb_double(ctx->l + l_index, ctx->l + l_index + 1); l_index++; l_index++; } } Loading