SELECT using IN list with 153 or more elements causes crash.
Key: CORE-3740
URL: http://tracker.firebirdsql.org/browse/CORE-3740
Project: Firebird Core
Issue Type: Bug
Co
On 01/24/12 15:11, Claudio Valderrama C. wrote:
> Can someone suggest how and when is the compiler using the delete operators
> with MemoryPool as second argument? It seems a leftover. Certainly, FB_NEW
> and FB_NEW_RPT play with pools, but I see nothing else.
>
I know one case - after exception
People, in fb_blk.h we have:
void operator delete(void* mem, MemoryPool& p)
{
if (mem)
p.deallocate(mem);
}
void operator delete[](void* mem, MemoryPool& p)
{
if (mem)
p.dealloc