Author: danielsh
Date: Wed Sep 29 10:31:19 2010
New Revision: 1002568
URL: http://svn.apache.org/viewvc?rev=1002568&view=rev
Log:
No change.
* subversion/libsvn_fs_fs/fs_fs.c
(with_some_lock):
Add "#if 0"'d code to refresh ffd->youngest_rev_cache, at the same place
where ffd->min_unpacked_rev and ffd->min_unpacked_revprop are refreshed
(they are refreshed outside of an "#if 0").
Modified:
subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c
Modified: subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c?rev=1002568&r1=1002567&r2=1002568&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c Wed Sep 29 10:31:19 2010
@@ -606,6 +606,10 @@ with_some_lock(svn_fs_t *fs,
SVN_ERR(update_min_unpacked_rev(fs, pool));
if (ffd->format >= SVN_FS_FS__MIN_PACKED_REVPROP_FORMAT)
SVN_ERR(update_min_unpacked_revprop(fs, pool));
+#if 0 /* Might be a good idea? */
+ SVN_ERR(get_youngest(&ffd->youngest_rev_cache, fs->path,
+ pool));
+#endif
err = body(baton, subpool);
}