What freed memory? I don't see where that occurred...
On Thu, May 28, 2009 at 05:28, Hyrum K. Wright<hyrum_at_hyrumwright.org> wrote:
> Author: hwright
> Date: Wed May 27 20:28:39 2009
> New Revision: 37871
>
> Log:
> Slight optimization and correctness fix in followup to r37870.
> Optimization: Combine a couple of loops.
> Correctness Fix: Stop referencing freed memory.
>
> * subversion/libsvn_wc/entries.c
> Â (entries_write_body): Combine the two loops.
>
> Modified:
> Â trunk/subversion/libsvn_wc/entries.c
>
> Modified: trunk/subversion/libsvn_wc/entries.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/entries.c?pathrev=37871&r1=37870&r2=37871
> ==============================================================================
> --- trunk/subversion/libsvn_wc/entries.c     Wed May 27 15:44:14 2009     (r37870)
> +++ trunk/subversion/libsvn_wc/entries.c     Wed May 27 20:28:39 2009     (r37871)
> @@ -2445,6 +2445,7 @@ entries_write_body(svn_wc__db_t *db,
> Â Â Â const void *key;
> Â Â Â void *val;
> Â Â Â const svn_wc_entry_t *this_entry;
> + Â Â Â const char *child_abspath;
>
> Â Â Â svn_pool_clear(iterpool);
>
> @@ -2457,26 +2458,18 @@ entries_write_body(svn_wc__db_t *db,
> Â Â Â Â continue;
>
> Â Â Â /* Write the entry. */
> + Â Â Â child_abspath = svn_dirent_join(local_abspath, key, iterpool);
> Â Â Â SVN_ERR(write_entry(db, wc_db, wc_id, repos_id, repos_root,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â this_entry, key,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â svn_dirent_join(local_abspath, key, iterpool),
> - Â Â Â Â Â Â Â Â Â Â Â Â Â this_dir, iterpool));
> - Â Â }
> -
> - Â for (hi = apr_hash_first(scratch_pool, dav_cache); hi;
> - Â Â Â Â hi = apr_hash_next(hi))
> - Â Â {
> - Â Â Â const void *key;
> - Â Â Â void *val;
> - Â Â Â const char *child_abspath;
> -
> - Â Â Â svn_pool_clear(iterpool);
> - Â Â Â apr_hash_this(hi, &key, NULL, &val);
> - Â Â Â child_abspath = key;
> - Â Â Â child_cache = val;
> + Â Â Â Â Â Â Â Â Â Â Â Â Â this_entry, key, child_abspath, this_dir, iterpool));
>
> - Â Â Â SVN_ERR(svn_wc__db_base_set_dav_cache(db, child_abspath, child_cache,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â iterpool));
> + Â Â Â /* Write the dav cache.
> + Â Â Â Â ### This can go away when we stop unconditionally deleting all
> + Â Â Â Â ### the entries before writing them (see comments above). */
> + Â Â Â child_cache = apr_hash_get(dav_cache, child_abspath,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â APR_HASH_KEY_STRING);
> + Â Â Â if (child_cache)
> + Â Â Â Â SVN_ERR(svn_wc__db_base_set_dav_cache(db, child_abspath, child_cache,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â iterpool));
> Â Â }
>
> Â svn_pool_destroy(iterpool);
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=2356019
>
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2368818
Received on 2009-07-07 15:08:17 CEST