Edgewall Software

Ticket #2472: patch1.patch

File patch1.patch, 0.6 kB (added by camior@…, 19 months ago)

Patch to fix this bug.

  • subversion/bindings/swig/python/svn/core.py

     
    189189  # app tries to destroy a pool during the shutdown process. Instead, we 
    190190  # check to make sure the application_pool is still around before calling 
    191191  # pool.destroy(). 
    192   if application_pool: 
     192  if application_pool and application_pool.valid(): 
    193193    pool.destroy() 
    194194apr_pool_destroy = svn_pool_destroy 
    195195