diff options
author | Thies C. Arntzen <thies@php.net> | 1999-12-04 12:06:32 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-12-04 12:06:32 +0000 |
commit | f6e8a597a9c2c43f535eb2505739eb056c106747 (patch) | |
tree | 8fca5affe1489117336a99cd5480f209df66c415 /ext/oci8 | |
parent | aaadc71d5d3e2b996f920a92c92ca0aebb367de8 (diff) | |
download | php-git-f6e8a597a9c2c43f535eb2505739eb056c106747.tar.gz |
fixed tiny leak
Diffstat (limited to 'ext/oci8')
-rw-r--r-- | ext/oci8/oci8.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index f2d661636e..59df252912 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -2229,6 +2229,7 @@ PHP_FUNCTION(ocidefinebyname) efree(define); define = tmp_define; } else { + efree(define); RETURN_FALSE; } |