Yup, looks that way. Patch applied. Thanks!
On Tue, Sep 15, 2009 at 6:08 AM, Quan Zongliang <[email protected]> wrote: > hi all > > In ExecuteVoid function of pgConn class: > // Check for errors > if (lastResultStatus != PGRES_TUPLES_OK && > lastResultStatus != PGRES_COMMAND_OK) > { > LogError(!reportError); > return false; > } > > Shoud be: > // Check for errors > if (lastResultStatus != PGRES_TUPLES_OK && > lastResultStatus != PGRES_COMMAND_OK) > { > LogError(!reportError); > PQclear(qryRes); > return false; > } > > right? > > > ----------------------------------------------- > Quan Zongliang > [email protected] > > > -- > Sent via pgadmin-hackers mailing list ([email protected]) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgadmin-hackers > > -- Dave Page EnterpriseDB UK: http://www.enterprisedb.com -- Sent via pgadmin-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
