]> granicus.if.org Git - python/commitdiff
DB.remove() needs to set the internal DB handle to NULL after being called.
authorGregory P. Smith <greg@mad-scientist.com>
Thu, 15 May 2003 00:13:18 +0000 (00:13 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Thu, 15 May 2003 00:13:18 +0000 (00:13 +0000)
(sourceforge pybsddb bug #737970).

Also: don't allow other threads to run during calls that invalidate the
DB handle.

Modules/_bsddb.c

index eb2b5169141da47a987abe37033489610e39d8f6..7a4f9e1762799ee6c17579ac3538704caf4c7535 100644 (file)
@@ -1135,9 +1135,7 @@ DB_close(DBObject* self, PyObject* args)
     if (self->db != NULL) {
         if (self->myenvobj)
             CHECK_ENV_NOT_CLOSED(self->myenvobj);
-        MYDB_BEGIN_ALLOW_THREADS;
         err = self->db->close(self->db, flags);
-        MYDB_END_ALLOW_THREADS;
         self->db = NULL;
         RETURN_IF_ERR();
     }
@@ -1707,9 +1705,8 @@ DB_remove(DBObject* self, PyObject* args, PyObject* kwargs)
         return NULL;
     CHECK_DB_NOT_CLOSED(self);
 
-    MYDB_BEGIN_ALLOW_THREADS;
     err = self->db->remove(self->db, filename, database, flags);
-    MYDB_END_ALLOW_THREADS;
+    self->db = NULL;
     RETURN_IF_ERR();
     RETURN_NONE();
 }