Author: hwright
Date: Fri May 4 15:02:30 2012
New Revision: 1334012
URL: http://svn.apache.org/viewvc?rev=1334012&view=rev
Log:
On the ev2-export branch:
Fix a careless mistake which led to crashes and infinite recursion (and all
other kinds of badness.)
* subversion/libsvn_wc/node.c
(svn_wc__node_pristine_get_tempdir): Call the wc_db function, rather than
ourself.
Modified:
subversion/branches/ev2-export/subversion/libsvn_wc/node.c
Modified: subversion/branches/ev2-export/subversion/libsvn_wc/node.c
URL:
http://svn.apache.org/viewvc/subversion/branches/ev2-export/subversion/libsvn_wc/node.c?rev=1334012&r1=1334011&r2=1334012&view=diff
==============================================================================
--- subversion/branches/ev2-export/subversion/libsvn_wc/node.c (original)
+++ subversion/branches/ev2-export/subversion/libsvn_wc/node.c Fri May 4
15:02:30 2012
@@ -1667,11 +1667,11 @@ svn_wc__node_pristine_get_tempdir(const
apr_pool_t *result_pool,
apr_pool_t *scratch_pool)
{
- return svn_error_trace(svn_wc__node_pristine_get_tempdir(temp_dir_abspath,
- wc_ctx->db,
- wri_abspath,
- result_pool,
- scratch_pool));
+ return svn_error_trace(svn_wc__db_pristine_get_tempdir(temp_dir_abspath,
+ wc_ctx->db,
+ wri_abspath,
+ result_pool,
+ scratch_pool));
}
svn_error_t *