diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2005-11-30 23:27:15 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2005-11-30 23:27:15 +0000 |
| commit | 911355bee897abca12bcfcb4353c58a65605aed1 (patch) | |
| tree | 1f0c94ea7053e842e1654418e1289a4ee0404911 /ext/pdo_pgsql | |
| parent | de8052aa41ea8619371f9c326ef70a938c39889e (diff) | |
| download | php-git-911355bee897abca12bcfcb4353c58a65605aed1.tar.gz | |
Fixed memory leak
Diffstat (limited to 'ext/pdo_pgsql')
| -rw-r--r-- | ext/pdo_pgsql/pgsql_driver.c | 2 | ||||
| -rw-r--r-- | ext/pdo_pgsql/pgsql_statement.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c index 65fb948675..67042c5e05 100644 --- a/ext/pdo_pgsql/pgsql_driver.c +++ b/ext/pdo_pgsql/pgsql_driver.c @@ -248,7 +248,7 @@ static int pgsql_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, /* that's all for now; we'll defer the actual prepare until the first execute call */ if (nsql) { - S->query = nsql; + S->query = estrdup(nsql); } else { S->query = estrdup(sql); } diff --git a/ext/pdo_pgsql/pgsql_statement.c b/ext/pdo_pgsql/pgsql_statement.c index 088694b105..4e771ea5a4 100644 --- a/ext/pdo_pgsql/pgsql_statement.c +++ b/ext/pdo_pgsql/pgsql_statement.c @@ -76,7 +76,10 @@ static int pgsql_stmt_dtor(pdo_stmt_t *stmt TSRMLS_DC) efree(S->param_formats); S->param_formats = NULL; } - + if (S->query) { + efree(S->query); + S->query = NULL; + } #endif if (S->cursor_name) { |
