diff options
author | Sterling Hughes <sterling@php.net> | 2000-05-21 23:15:09 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2000-05-21 23:15:09 +0000 |
commit | 6ceddbb1d509d58a15423066ffdf58f98d503a20 (patch) | |
tree | 2f6460a808e14da596b352c38a832e93dc97b1e5 /ext/dba/dba_cdb.c | |
parent | e80b2b13fa3ff9c72ac19cc84702e0fd923c3530 (diff) | |
download | php-git-6ceddbb1d509d58a15423066ffdf58f98d503a20.tar.gz |
fix bug 4533
Diffstat (limited to 'ext/dba/dba_cdb.c')
-rw-r--r-- | ext/dba/dba_cdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dba/dba_cdb.c b/ext/dba/dba_cdb.c index 31483e03be..8f90805fad 100644 --- a/ext/dba/dba_cdb.c +++ b/ext/dba/dba_cdb.c @@ -71,7 +71,7 @@ DBA_OPEN_FUNC(cdb) cdb = malloc(sizeof *cdb); memset(cdb, 0, sizeof *cdb); - cdb->fd = V_OPEN((info->path, gmode)) + cdb->fd = V_OPEN((info->path, gmode)); if(cdb->fd < 0) { free(cdb); return FAILURE; |