[Firebird-devel] [FB-Tracker] Created: (CORE-3740) SELECT using IN list with 153 or more elements causes crash.

2012-01-24 Thread Brent Rowland (JIRA)
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

Re: [Firebird-devel] fb_blk.h

2012-01-24 Thread Alex Peshkoff
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

[Firebird-devel] fb_blk.h

2012-01-24 Thread Claudio Valderrama C.
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