You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ar...@apache.org on 2010/08/07 19:20:43 UTC

svn commit: r983261 - /subversion/trunk/subversion/svnrdump/load_editor.c

Author: artagnon
Date: Sat Aug  7 17:20:43 2010
New Revision: 983261

URL: http://svn.apache.org/viewvc?rev=983261&view=rev
Log:
* subversion/svnrdump/load_editor.c
  (set_revision_property): Wrap the svn_ra_change_rev_prop call in
  SVN_ERR.

Noticed by: danielsh

Modified:
    subversion/trunk/subversion/svnrdump/load_editor.c

Modified: subversion/trunk/subversion/svnrdump/load_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnrdump/load_editor.c?rev=983261&r1=983260&r2=983261&view=diff
==============================================================================
--- subversion/trunk/subversion/svnrdump/load_editor.c (original)
+++ subversion/trunk/subversion/svnrdump/load_editor.c Sat Aug  7 17:20:43 2010
@@ -323,8 +323,8 @@ set_revision_property(void *baton,
   else
     /* Special handling for revision 0; this is safe because the
        commit_editor hasn't been created yet. */
-    svn_ra_change_rev_prop(rb->pb->session, rb->rev, name, value,
-                           rb->pool);
+    SVN_ERR(svn_ra_change_rev_prop(rb->pb->session, rb->rev, name, value,
+                                   rb->pool));
 
   /* Remember any datestamp/ author that passes through (see comment
      in close_revision). */