DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23280>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23280 XMemory.cpp - Assertion failed: manager != 0 ------- Additional Comments From [EMAIL PROTECTED] 2003-10-08 16:57 ------- You are mixing runtimes. You must link _all_ executables with the same run- time library. For release, it's Multithreaded DLL, for debug, it's Debug Multithreaded DLL. Otherwise, bad things will happen when memory allocated from one heap is freed in another. I rebuilt your code with the appropriate setting, and everything worked fine. See the project settings dialog box, C/C++ tab, and the "Code generation" category.
