1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00

no memory no members

This commit is contained in:
Marcus Boerger
2002-11-05 11:22:48 +00:00
parent 3bfb7162a8
commit 2db35e91ea

View File

@@ -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;
}