Re: [Quickfix-developers] crashes with latest versions, sample code attached ...
Brought to you by:
orenmnero
|
From: Oren M. <or...@qu...> - 2006-09-13 23:10:47
|
I looked into this more deeply. Turns out the problem is with the deployment. The compiled library is using one Allocator, however the header files included by your application does not have the correct #defines and was using a different one. This resulted in objects being allocated with one allocator, and deallocated with a different one (mt alloc). This gave the appearance of an mt_alloc bug. I've corrected this problem and will put it out in the upcoming release. --oren > i came accross some weired segfaults using the quickfix library. below > you can see a simple code snippet which crashes versions 1.12.2, 1.12.3 > as well as current svn. the versions up to 1.12.1 work ok. |