Author: lgo Date: Fri Jul 29 19:35:39 2011 New Revision: 1152347 URL: http://svn.apache.org/viewvc?rev=1152347&view=rev Log: * STATUS: propose r1150506, r1150853 for backport.
Modified: subversion/branches/1.7.x/ (props changed) subversion/branches/1.7.x/STATUS subversion/branches/1.7.x/subversion/libsvn_ra_serf/replay.c Propchange: subversion/branches/1.7.x/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Jul 29 19:35:39 2011 @@ -54,4 +54,4 @@ /subversion/branches/tree-conflicts:868291-873154 /subversion/branches/tree-conflicts-notify:873926-874008 /subversion/branches/uris-as-urls:1060426-1064427 -/subversion/trunk:1146013,1146121,1146219,1146222,1146274,1146492,1146555,1146606,1146620,1146684,1146781,1146832,1146834,1146870,1146899,1146904,1147293,1147309,1147882,1148071,1148131,1148374,1148424,1148566,1148588,1148853,1148877,1148882,1148936,1149105,1149141,1149160,1149228,1149240,1149343,1149371-1149372,1149377,1149398,1149572,1149675,1149701,1149713,1150242,1150372,1150441,1150812,1151036,1152129 +/subversion/trunk:1146013,1146121,1146219,1146222,1146274,1146492,1146555,1146606,1146620,1146684,1146781,1146832,1146834,1146870,1146899,1146904,1147293,1147309,1147882,1148071,1148131,1148374,1148424,1148566,1148588,1148853,1148877,1148882,1148936,1149105,1149141,1149160,1149228,1149240,1149343,1149371-1149372,1149377,1149398,1149572,1149675,1149701,1149713,1150242,1150372,1150441,1150506,1150812,1150853,1151036,1152129 Modified: subversion/branches/1.7.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/STATUS?rev=1152347&r1=1152346&r2=1152347&view=diff ============================================================================== --- subversion/branches/1.7.x/STATUS (original) +++ subversion/branches/1.7.x/STATUS Fri Jul 29 19:35:39 2011 @@ -137,6 +137,14 @@ Candidate changes: +0: danielsh (we shouldn't depend on libsvn_client fixes to avoid accumulating tempfiles on the server) + * r1150506, r1150853 + Fix issue #3967, file descriptor and memory leak in svnsync and svnrdump + with ra_serf. + Justification: + Both tools are basically not useable with these leaks. + Votes: + +1: lgo + * r1151177 Fix two bugs in ra_serf when connecting to HTTPS repository hosted on non-standard port. Modified: subversion/branches/1.7.x/subversion/libsvn_ra_serf/replay.c URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/subversion/libsvn_ra_serf/replay.c?rev=1152347&r1=1152346&r2=1152347&view=diff ============================================================================== --- subversion/branches/1.7.x/subversion/libsvn_ra_serf/replay.c (original) +++ subversion/branches/1.7.x/subversion/libsvn_ra_serf/replay.c Fri Jul 29 19:35:39 2011 @@ -194,6 +194,7 @@ start_replay(svn_ra_serf__xml_parser_t * /* Create a pool for the commit editor. */ ctx->dst_rev_pool = svn_pool_create(ctx->src_rev_pool); + ctx->file_pool = svn_pool_create(ctx->dst_rev_pool); /* ### it would be nice to have a proper scratch_pool. */ SVN_ERR(svn_ra_serf__select_revprops(&ctx->props, @@ -650,7 +651,6 @@ svn_ra_serf__replay(svn_ra_session_t *ra replay_ctx = apr_pcalloc(pool, sizeof(*replay_ctx)); replay_ctx->src_rev_pool = pool; - replay_ctx->file_pool = svn_pool_create(pool); replay_ctx->editor = editor; replay_ctx->editor_baton = edit_baton; replay_ctx->done = FALSE; @@ -766,7 +766,6 @@ svn_ra_serf__replay_range(svn_ra_session replay_ctx = apr_pcalloc(ctx_pool, sizeof(*replay_ctx)); replay_ctx->src_rev_pool = ctx_pool; - replay_ctx->file_pool = svn_pool_create(pool); replay_ctx->revstart_func = revstart_func; replay_ctx->revfinish_func = revfinish_func; replay_ctx->replay_baton = replay_baton;