Rev 1877: Dereference client string func. in file:///data/jelmer/bzr-svn/trunk/

Jelmer Vernooij jelmer at samba.org
Tue Sep 9 02:03:47 BST 2008


At file:///data/jelmer/bzr-svn/trunk/

------------------------------------------------------------
revno: 1877
revision-id: jelmer at samba.org-20080909010345-itch9teq3ng1lhwj
parent: jelmer at samba.org-20080909005059-zqdk8ofgddnnvj5w
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: trunk
timestamp: Tue 2008-09-09 03:03:45 +0200
message:
  Dereference client string func.
modified:
  ra.c                           ra.pyx-20080313140933-qybkqaxe3m4mcll7-1
=== modified file 'ra.c'
--- a/ra.c	2008-09-09 00:32:05 +0000
+++ b/ra.c	2008-09-09 01:03:45 +0000
@@ -1878,9 +1878,10 @@
 static void ra_dealloc(PyObject *self)
 {
 	RemoteAccessObject *ra = (RemoteAccessObject *)self;
+	Py_XDECREF(ra->client_string_func);
 	Py_XDECREF(ra->progress_func);
+	Py_XDECREF(ra->auth);
 	apr_pool_destroy(ra->pool);
-	Py_XDECREF(ra->auth);
 	PyObject_Del(self);
 }
 




More information about the bazaar-commits mailing list