On Wed, Mar 28, 2012 at 09:12, <danie...@apache.org> wrote: >... > +++ subversion/branches/1.7.x-r1306111/subversion/svnserve/serve.c Wed Mar 28 > 13:12:56 2012 > @@ -1623,10 +1623,16 @@ static svn_error_t *get_dir(svn_ra_svn_c > { > for (hi = apr_hash_first(pool, entries); hi; hi = apr_hash_next(hi)) > { > + static const char *missing_date = svn_time_to_cstring(0, pool);
static mixed with pool probably isn't going to work well :-P ... how about moving that up a couple lines to the scope enclosing the "for", and dropping the static qualifier? >... Thanks, -g