Browse Source

[2853] Fix call

Mukund Sivaraman 12 years ago
parent
commit
2935657cc5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/python/isc/datasrc/configurableclientlist_python.cc

+ 1 - 1
src/lib/python/isc/datasrc/configurableclientlist_python.cc

@@ -178,7 +178,7 @@ ConfigurableClientList_getCachedZoneWriter(PyObject* po_self, PyObject* args) {
             } else {
                 // Make sure it keeps the writer alive.
                 writer.reset(createZoneWriterObject(result.second,
-                                                    writer.get()));
+                                                    NULL));
             }
 
             return (Py_BuildValue("IO", result.first, writer.get()));