mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
fix leak
This commit is contained in:
parent
ca59b1158e
commit
6ee00c8199
1 changed files with 5 additions and 0 deletions
|
@ -70,6 +70,11 @@ static int pgsql_stmt_dtor(pdo_stmt_t *stmt TSRMLS_DC)
|
||||||
efree(S->param_values);
|
efree(S->param_values);
|
||||||
S->param_values = NULL;
|
S->param_values = NULL;
|
||||||
}
|
}
|
||||||
|
if (S->param_formats) {
|
||||||
|
efree(S->param_formats);
|
||||||
|
S->param_formats = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (S->cursor_name) {
|
if (S->cursor_name) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue