Michael Bonfils wrote:
>
> I add /MD and the problem remains
>
What command are you using to compile your program?
I've tried the example with VC++ 6.0 and it crashes at the same point
without /MD but works fine with /MD.
Also, are you following the standard compilation procedure for OpenSSL
I add /MD and the problem remains
- Original Message -
From: "Dr S N Henson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, December 28, 2000 5:18 PM
Subject: Re: problem with example of base64
>
> The problem I was directing you to is t
Michael Bonfils wrote:
>
> Thanks
>
> but I believe it's not this problem because the following code works :
> BIO *fsource, *fcible, *f_b64;
>
> f_b64 = BIO_new(BIO_f_base64());
> fsource=BIO_new( BIO_s_file() );
> fcible=BIO_new( BIO_s_file() );
> fcible=BIO_push(f_b64, fcible );
> BIO
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, December 28, 2000 4:28 PM
Subject: Re: problem with example of base64
> From: "Michael Bonfils" <[EMAIL PROTECTED]>
>
> mbonfils> Excuse me,
> mbonfils> I use VC4.2 and OpenSSL 0.9.6
>