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

2010-03-15 Thread Michael Boman
inline: On Fri, Mar 12, 2010 at 12:04 AM, Dave Thompson dave.thomp...@princetonpayments.com wrote: -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 re: crash in BIO_set_fp, on Windows

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

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 re: crash in BIO_set_fp, on Windows, could it be faq#PROG2? I am using OpenSSL 0.9.8l from http://www.slproweb.com/products

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

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 mich...@michaelboman.org Hello list, On line 1014 in the code uploaded at http://pastebin.ca/1810624 the