On Wed, Mar 17, 2010 at 08:29, <cmpil...@apache.org> wrote: >... > +++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Wed Mar 17 12:29:14 2010 > @@ -582,22 +582,21 @@ svn_wc__prop_array_to_hash(const apr_arr > apr_pool_t *result_pool) > { > int i; > - apr_hash_t *dav_cache; > + apr_hash_t *prophash; > > if (props == NULL || props->nelts == 0) > return NULL; > > - dav_cache = apr_hash_make(result_pool); > + prophash = apr_hash_make(result_pool); > > for (i = 0; i < props->nelts; i++) > { > const svn_prop_t *prop = APR_ARRAY_IDX(props, i, const svn_prop_t *); > - > if (prop->value != NULL)
Style nit: please don't remove blank lines that end up smashing code against the declaration block. It then becomes very difficult to distinguish the two. (obviously, no need to go back to add this, but please don't keep doing this....) >... Cheers, -g