Author: svn-role Date: Fri Sep 20 04:00:56 2019 New Revision: 1867198 URL: http://svn.apache.org/viewvc?rev=1867198&view=rev Log: Merge r1857367 from trunk:
* r1857367 Fix memory lifetime problem in a libsvn_wc error code path. Justification: Edge-case crash. Subversion should not crash. Votes: +1: stsp, rhuijben Modified: subversion/branches/1.11.x/ (props changed) subversion/branches/1.11.x/STATUS subversion/branches/1.11.x/subversion/libsvn_wc/wc_db_update_move.c Propchange: subversion/branches/1.11.x/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Sep 20 04:00:56 2019 @@ -100,4 +100,4 @@ /subversion/branches/verify-at-commit:1462039-1462408 /subversion/branches/verify-keep-going:1439280-1546110 /subversion/branches/wc-collate-path:1402685-1480384 -/subversion/trunk:1840990-1840991,1840995,1840997,1841059,1841079,1841091,1841098,1841136,1841180,1841272,1841481,1841524-1841525,1841567,1841600-1841602,1841606,1841719,1841725,1841731,1841736,1841742-1841743,1841753-1841754,1841822,1841850,1841867,1842090,1842222-1842223,1842334,1842814,1842827,1842829,1842877,1843888,1844882,1844987,1845204,1845212,1845261,1845408,1845555-1845556,1845559,1845577,1846299,1846403,1846406,1846704,1847181-1847182,1847188,1847264,1847377,1847572,1847596,1847598,1847697,1847922,1847924,1847946,1850348,1850621,1850651,1851676,1851687,1851791,1852013,1853483,1853761,1854072,1854074,1854216 +/subversion/trunk:1840990-1840991,1840995,1840997,1841059,1841079,1841091,1841098,1841136,1841180,1841272,1841481,1841524-1841525,1841567,1841600-1841602,1841606,1841719,1841725,1841731,1841736,1841742-1841743,1841753-1841754,1841822,1841850,1841867,1842090,1842222-1842223,1842334,1842814,1842827,1842829,1842877,1843888,1844882,1844987,1845204,1845212,1845261,1845408,1845555-1845556,1845559,1845577,1846299,1846403,1846406,1846704,1847181-1847182,1847188,1847264,1847377,1847572,1847596,1847598,1847697,1847922,1847924,1847946,1850348,1850621,1850651,1851676,1851687,1851791,1852013,1853483,1853761,1854072,1854074,1854216,1857367 Modified: subversion/branches/1.11.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.11.x/STATUS?rev=1867198&r1=1867197&r2=1867198&view=diff ============================================================================== --- subversion/branches/1.11.x/STATUS (original) +++ subversion/branches/1.11.x/STATUS Fri Sep 20 04:00:56 2019 @@ -69,13 +69,6 @@ Veto-blocked changes: Approved changes: ================= - * r1857367 - Fix memory lifetime problem in a libsvn_wc error code path. - Justification: - Edge-case crash. Subversion should not crash. - Votes: - +1: stsp, rhuijben - * r1857391 Fix build with APR 1.7.0. Justification: Modified: subversion/branches/1.11.x/subversion/libsvn_wc/wc_db_update_move.c URL: http://svn.apache.org/viewvc/subversion/branches/1.11.x/subversion/libsvn_wc/wc_db_update_move.c?rev=1867198&r1=1867197&r2=1867198&view=diff ============================================================================== --- subversion/branches/1.11.x/subversion/libsvn_wc/wc_db_update_move.c (original) +++ subversion/branches/1.11.x/subversion/libsvn_wc/wc_db_update_move.c Fri Sep 20 04:00:56 2019 @@ -2175,11 +2175,12 @@ suitable_for_move(svn_wc__db_wcroot_t *w while (have_row) { svn_revnum_t node_revision = svn_sqlite__column_revnum(stmt, 2); - const char *child_relpath = svn_sqlite__column_text(stmt, 0, NULL); + const char *child_relpath; const char *relpath; svn_pool_clear(iterpool); + child_relpath = svn_sqlite__column_text(stmt, 0, iterpool); relpath = svn_relpath_skip_ancestor(local_relpath, child_relpath); relpath = svn_relpath_join(repos_relpath, relpath, iterpool);