[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r15287 - in trunk/subversion: libsvn_ra_svn

From: D.J. Heap <dj_at_shadyvale.net>
Date: 2005-07-07 22:40:38 CEST

+ /* Loop through the lock commands. */
+ for (i = 0; i < locks->nelts; ++i)
+ {
+ svn_pool_clear(subpool);
+ struct lock_cmd *cmd = apr_pcalloc(pool, sizeof(struct lock_cmd));
+
+ svn_ra_svn_item_t *item = &APR_ARRAY_IDX(locks, i, svn_ra_svn_item_t);
+
+ if (item->kind != SVN_RA_SVN_LIST)
+ return svn_error_create(SVN_ERR_RA_SVN_MALFORMED_DATA, NULL,
+ "Lock commands should be list of lists\n");

There are a number of places in this commit that clear subpools before
declaring and initializing scope variables like the above snippet.

Obviously it works on some compilers, but MSVC doesn't like it (and refuses
to compile)...and I thought it was illegal in C?

DJ

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Jul 7 22:39:40 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.