You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/03/05 14:44:25 UTC

svn commit: r1452792 - /subversion/trunk/subversion/libsvn_ra_serf/options.c

Author: rhuijben
Date: Tue Mar  5 13:44:25 2013
New Revision: 1452792

URL: http://svn.apache.org/r1452792
Log:
* subversion/libsvn_ra_serf/options.c
  (svn_ra_serf__v1_get_activity_collection):
     Add missing call to svn_ra_serf__error_on_status.

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/options.c

Modified: subversion/trunk/subversion/libsvn_ra_serf/options.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/options.c?rev=1452792&r1=1452791&r2=1452792&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/options.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/options.c Tue Mar  5 13:44:25 2013
@@ -456,6 +456,10 @@ svn_ra_serf__v1_get_activity_collection(
   SVN_ERR(create_options_req(&opt_ctx, session, conn, scratch_pool));
   SVN_ERR(svn_ra_serf__context_run_one(opt_ctx->handler, scratch_pool));
 
+  SVN_ERR(svn_ra_serf__error_on_status(opt_ctx->handler->sline.code,
+                                       opt_ctx->handler->path,
+                                       opt_ctx->handler->location));
+
   *activity_url = apr_pstrdup(result_pool, opt_ctx->activity_collection);
 
   return SVN_NO_ERROR;