Author: julianfoad
Date: Mon Feb 26 11:57:36 2018
New Revision: 1825360
URL: http://svn.apache.org/viewvc?rev=1825360&view=rev
Log:
* subversion/libsvn_delta/debug_editor.c
(svn_delta__get_debug_editor): Use the proper constructor for the editor.
Modified:
subversion/trunk/subversion/libsvn_delta/debug_editor.c
Modified: subversion/trunk/subversion/libsvn_delta/debug_editor.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/debug_editor.c?rev=1825360&r1=1825359&r2=1825360&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/debug_editor.c (original)
+++ subversion/trunk/subversion/libsvn_delta/debug_editor.c Mon Feb 26 11:57:36
2018
@@ -458,7 +458,7 @@ svn_delta__get_debug_editor(const svn_de
const char *prefix,
apr_pool_t *pool)
{
- svn_delta_editor_t *tree_editor = apr_palloc(pool, sizeof(*tree_editor));
+ svn_delta_editor_t *tree_editor = svn_delta_default_editor(pool);
struct edit_baton *eb = apr_palloc(pool, sizeof(*eb));
apr_file_t *errfp;
svn_stream_t *out;