Please test patches which are merged into the release branch.

db2 has a standard UNIX API which in turn means that
it returns non-zero in error conditions.
This commit is contained in:
Sascha Schumann 2002-04-10 11:10:17 +00:00
parent 48b70510ba
commit 1ed150172a

View File

@ -67,7 +67,7 @@ DBA_OPEN_FUNC(db2)
filemode = Z_LVAL_PP(info->argv[0]);
}
if(!db_open(info->path, type, gmode, filemode, NULL, NULL, &dbp)) {
if(db_open(info->path, type, gmode, filemode, NULL, NULL, &dbp)) {
info->dbf = malloc(sizeof(dba_db2_data));
memset(info->dbf, 0, sizeof(dba_db2_data));
((dba_db2_data *) info->dbf)->dbp = dbp;