mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
Clean up the valgrind memory leaks (caused by lots of subtle c++ bugs. Addresse #215
git-svn-id: file:///svn/tokudb@1320 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
|
||||
int Dbc::close (void) {
|
||||
DBC *dbc = this;
|
||||
DbEnv *env = (DbEnv*)dbc->dbp->api_internal; // Must grab the env before closing the cursor.
|
||||
int ret = dbc->c_close(dbc);
|
||||
DbEnv *env = (DbEnv*)dbc->dbp->api_internal;
|
||||
return env->maybe_throw_error(ret);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user