summaryrefslogtreecommitdiff
path: root/ext/oci8
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>1999-12-04 12:06:32 +0000
committerThies C. Arntzen <thies@php.net>1999-12-04 12:06:32 +0000
commitf6e8a597a9c2c43f535eb2505739eb056c106747 (patch)
tree8fca5affe1489117336a99cd5480f209df66c415 /ext/oci8
parentaaadc71d5d3e2b996f920a92c92ca0aebb367de8 (diff)
downloadphp-git-f6e8a597a9c2c43f535eb2505739eb056c106747.tar.gz
fixed tiny leak
Diffstat (limited to 'ext/oci8')
-rw-r--r--ext/oci8/oci8.c1
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;
}