Ticket #2472: patch1.patch
| File patch1.patch, 0.6 kB (added by camior@…, 19 months ago) |
|---|
-
subversion/bindings/swig/python/svn/core.py
189 189 # app tries to destroy a pool during the shutdown process. Instead, we 190 190 # check to make sure the application_pool is still around before calling 191 191 # pool.destroy(). 192 if application_pool :192 if application_pool and application_pool.valid(): 193 193 pool.destroy() 194 194 apr_pool_destroy = svn_pool_destroy 195 195
