From: Marcus Boerger Date: Tue, 5 Nov 2002 11:22:48 +0000 (+0000) Subject: no memory no members X-Git-Tag: php-4.3.0RC1~273 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2db35e91ea7ba81e85ee8e7f4cf7dc4635fc919f;p=php no memory no members --- diff --git a/ext/dba/dba_cdb.c b/ext/dba/dba_cdb.c index ffa7c9bf63..6b025d5466 100644 --- a/ext/dba/dba_cdb.c +++ b/ext/dba/dba_cdb.c @@ -103,9 +103,9 @@ DBA_OPEN_FUNC(cdb) cdb = ecalloc(sizeof(dba_cdb), 1); if (!cdb) { #if DBA_CDB_BUILTIN - php_stream_close(cdb->file); + php_stream_close(file); #else - close(cdb->file); + close(file); #endif return FAILURE; }