i've done some more research on this issue with a new windows box.
it only happens for me if i compile libxml2 and libxslt with cruntime=/MT. if i using cruntime=/MD it does not happen.
Then it will be that some other library in the chain (zlib and/or iconv) is compiled using /MD, even if you use /MT for libxml. All libraries loaded by the same process must use the same runtime.
You'll have to produce /MT versions of zlib and iconv, or configure them both out when you build a /MT libxml.
Ciao, Igor _______________________________________________ xslt mailing list, project page http://xmlsoft.org/XSLT/ [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/xslt
