mirror of
https://github.com/php/php-src.git
synced 2025-01-20 18:53:37 +08:00
(ibase_execute) - Oops, trying to free a little bit too much. Maybe fixes
#6721, #7117, #7278. # Shouldn't have 6 versions of interbase.c lying around. Can't always # remember which versions were tested, which ones committed and which ones # actually in CVS... :(
This commit is contained in:
parent
13fa52b881
commit
68b899ce26
@ -1411,8 +1411,9 @@ static int _php_ibase_exec(ibase_result **ib_resultp, ibase_query *ib_query, int
|
||||
|
||||
_php_ibase_exec_error: /* I'm a bad boy... */
|
||||
|
||||
if (in_sqlda)
|
||||
_php_ibase_free_xsqlda(in_sqlda);
|
||||
if (in_sqlda){
|
||||
efree(in_sqlda);
|
||||
}
|
||||
if (bind_buf)
|
||||
efree(bind_buf);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user