Author: rhuijben
Date: Fri Jun 17 08:36:28 2011
New Revision: 1136808

URL: http://svn.apache.org/viewvc?rev=1136808&view=rev
Log:
Add a few svn_error_return() calls in neon.

* subversion/libsvn_ra_neon/commit.c
  (do_proppatch,
   apply_revprops): Wrap calls to svn_ra_neon__do_proppatch.

Modified:
    subversion/trunk/subversion/libsvn_ra_neon/commit.c

Modified: subversion/trunk/subversion/libsvn_ra_neon/commit.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_neon/commit.c?rev=1136808&r1=1136807&r2=1136808&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_neon/commit.c (original)
+++ subversion/trunk/subversion/libsvn_ra_neon/commit.c Fri Jun 17 08:36:28 2011
@@ -602,9 +602,12 @@ static svn_error_t * do_proppatch(resour
     apr_hash_set(extra_headers, "If", APR_HASH_KEY_STRING,
                  apr_psprintf(pool, "(<%s>)", rb->token));
 
-  return svn_ra_neon__do_proppatch(rb->cc->ras, proppatch_target,
-                                   rb->prop_changes, rb->prop_deletes,
-                                   NULL, extra_headers, pool);
+  return svn_error_return(svn_ra_neon__do_proppatch(rb->cc->ras,
+                                                    proppatch_target,
+                                                    rb->prop_changes,
+                                                    rb->prop_deletes,
+                                                    NULL, extra_headers,
+                                                    pool));
 }
 
 
@@ -706,8 +709,9 @@ apply_revprops(commit_ctx_t *cc,
       proppatch_url = vcc_rsrc.wr_url;
     }
 
-  return svn_ra_neon__do_proppatch(cc->ras, proppatch_url, cc->revprop_table,
-                                   NULL, NULL, NULL, pool);
+  return svn_error_return(svn_ra_neon__do_proppatch(cc->ras, proppatch_url,
+                                                    cc->revprop_table,
+                                                    NULL, NULL, NULL, pool));
 }
 
 


Reply via email to