Hi WXS!
> I'm porting an application from VC++ 6.0 to VC++ 2003 and I'm seeing crashes
> sometimes when _vsnprintf is called sometimes with format strings that have
[quoted text clipped - 4 lines]
> pointer and causes the code to fail later when it tries to access the
> pointer.)
Could you please provide a small repro-code?
One problem might be, that you pass an "CString" parameter without
casting to LPCSTR. Then only the address of the class is passed, which
is wrong!
Example:
CString str;
str = "Hello world!";
printf("%s", str); // WRONG!
printf("%s", (LPCSTR) str); // correct...

Signature
Greetings
Jochen
My blog about Win32 and .NET
http://blog.kalmbachnet.de/