I come across code snippets like this:
SpoolManager::SpoolManager()
: d( new SpoolManagerData )
{
...
Query * q = new Query( ... , 0 );
q->bind( 1, Recipient::Unknown );
q->bind( 2, Recipient::Delayed );
q->execute();
}Is this a memory leak for the Query object? -- Stephen.
