Author: kotkov
Date: Thu Nov 24 10:12:10 2022
New Revision: 1905504

URL: http://svn.apache.org/viewvc?rev=1905504&view=rev
Log:
On the 'pristines-on-demand-on-mwf' branch: Sync with trunk@1905503.

Modified:
    subversion/branches/pristines-on-demand-on-mwf/   (props changed)
    
subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/working_file_writer.c

Propchange: subversion/branches/pristines-on-demand-on-mwf/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1905480-1905503

Modified: 
subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/working_file_writer.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/working_file_writer.c?rev=1905504&r1=1905503&r2=1905504&view=diff
==============================================================================
--- 
subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/working_file_writer.c
 (original)
+++ 
subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/working_file_writer.c
 Thu Nov 24 10:12:10 2022
@@ -25,6 +25,7 @@
 #include "svn_subst.h"
 #include "svn_time.h"
 #include "svn_path.h"
+#include "svn_private_config.h"
 
 #include "private/svn_io_private.h"
 #include "private/svn_wc_private.h"
@@ -71,8 +72,9 @@ svn_wc__working_file_writer_open(svn_wc_
   svn_stream_t *install_stream;
   svn_stream_t *write_stream;
 
-  SVN_ERR(svn_stream__create_for_install(&install_stream, tmp_abspath,
-                                         result_pool, scratch_pool));
+  SVN_ERR_W(svn_stream__create_for_install(&install_stream, tmp_abspath,
+                                           result_pool, scratch_pool),
+            _("Unable to create file install stream"));
 
   if (is_readonly)
     svn_stream__install_set_read_only(install_stream, TRUE);


Reply via email to