Re: Crash in BIO_set_fp(): Windows esp SL VC9?

2010-03-15 Thread Andy Polyakov
Aside: all 4 pairs of .lib's in lib\VC (and one in lib) are exportlibs for the one pair of DLL's, which are actually /MD but use the applink mechanism, as mentioned in the FAQ, to get the right CRT -- assuming the EXE correctly compiles applink.c, and the code you referenced does. So this "sh

Re: Crash in BIO_set_fp(): Windows esp SL VC9?

2010-03-14 Thread Michael Boman
OpenSSL mailserver didn't like the attachment, see http://www.michaelboman.org/how-to/building-openssl-on-windows for the previous attached file. Best regards Michael Boman On Mon, Mar 15, 2010 at 6:21 AM, Michael Boman wrote: > Thanks for your input, clarifications inline: > > On Fri, Mar 12, 2

RE: Crash in BIO_set_fp(): Windows esp SL VC9?

2010-03-11 Thread Dave Thompson
-dev added, I think this is actually a bug > From: owner-openssl-us...@openssl.org On Behalf Of Michael Boman > Sent: Monday, 01 March, 2010 11:40 > I am using OpenSSL 0.9.8l from http://www.slproweb.com/products/Win32OpenSSL.html > I link to these libraries for

Re: Crash in BIO_set_fp()

2010-03-01 Thread Michael Boman
I am using OpenSSL 0.9.8l from http://www.slproweb.com/products/Win32OpenSSL.html I link to these libraries for debugging: C:\OpenSSL\lib\VC\ssleay32MTd.lib C:\OpenSSL\lib\VC\libeay32MTd.lib And these ones for release: C:\OpenSSL\lib\VC\ssleay32MT.lib C:\OpenSSL\lib\VC\libeay32MT.lib I compile t

RE: Crash in BIO_set_fp()

2010-02-26 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Michael Boman > Sent: Thursday, 25 February, 2010 15:26 > if (options->xmlOutput != 0) > { > fileBIO = BIO_new(BIO_s_file()); > BIO_set_fp(fileBIO, options->xmlOutput, BIO_NOCLOSE); // <- Crashing here >

Re: Crash in BIO_set_fp()

2010-02-25 Thread Michael Boman
I forgot to mention the important stuff: OpenSSL 0.9.8l 5 Nov 2009 Visual C++ 2008 Express Edition Windows 7 Enterprise (64-bit) Best regards Michael Boman 2010/2/25 Michael Boman > Hello list, > > On line 1014 in the code uploaded at http://pastebin.ca/1810624 the > program crashes. The relev