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

Re: CVS update: subversion/subversion/libsvn_fs txn-table.c

From: Greg Stein <gstein_at_lyra.org>
Date: 2001-01-24 23:52:54 CET

It might be easier to use an apr_array_header_t in there, and then just
return (char **)ary->elts.

It would certainly simplify the count/size and alloc/realloc logic.

Cheers,
-g

On Wed, Jan 24, 2001 at 10:13:28PM -0000, jimb@tigris.org wrote:
> User: jimb
> Date: 01/01/24 14:13:28
>
> Modified: subversion/libsvn_fs txn-table.c
> Log:
> * libsvn_fs/txn-table.c (svn_fs__get_txn_list): Don't set *NAMES_P
> until we know the operation has succeeded.
>
> Revision Changes Path
> 1.9 +14 -9 subversion/subversion/libsvn_fs/txn-table.c
>
> Index: txn-table.c
> ===================================================================
> RCS file: /cvs/subversion/subversion/libsvn_fs/txn-table.c,v
> retrieving revision 1.8
> retrieving revision 1.9
> diff -u -r1.8 -r1.9
> --- txn-table.c 2001/01/24 18:56:25 1.8
> +++ txn-table.c 2001/01/24 22:13:28 1.9
> @@ -236,14 +236,16 @@
> {
> int const next_id_key_len = strlen (next_id_key);
>
> + char **names;
> + apr_size_t names_count = 0;
> + apr_size_t names_size = 4;
> +
> DBC *cursor;
> DBT key, value;
> - db_recno_t names_count = 0;
> - db_recno_t names_size = 4;
> int db_err, db_c_err;
>
> /* Allocate the initial names array */
> - *names_p = apr_pcalloc (pool, names_size * sizeof (**names_p));
> + names = apr_pcalloc (pool, names_size * sizeof (*names));
>
> /* Create a database cursor to list the transaction names. */
> SVN_ERR (DB_WRAP (fs, "reading transaction list (opening cursor)",
> @@ -271,19 +273,21 @@
> /* Make sure there's enough space in the names array. */
> if (names_count == names_size - 1)
> {
> - char **tmp = apr_pcalloc (pool, 2 * names_size * sizeof (*tmp));
> - memcpy (tmp, *names_p, names_size * sizeof (*tmp));
> - *names_p = tmp;
> + char **tmp;
> +
> names_size *= 2;
> + tmp = apr_pcalloc (pool, names_size * sizeof (*tmp));
> + memcpy (tmp, names, names_count * sizeof (*tmp));
> + names = tmp;
> }
>
> - (*names_p)[names_count++] = apr_pstrndup (pool, key.data, key.size);
> + names[names_count++] = key.data;
> }
>
> - (*names_p)[names_count] = NULL;
> + names[names_count] = NULL;
>
> /* Check for errors, but close the cursor first. */
> - db_c_err = cursor->c_close(cursor);
> + db_c_err = cursor->c_close (cursor);
> if (db_err != DB_NOTFOUND)
> {
> SVN_ERR (DB_WRAP (fs, "reading transaction list (listing keys)",
> @@ -292,6 +296,7 @@
> SVN_ERR (DB_WRAP (fs, "reading transaction list (closing cursor)",
> db_c_err));
>
> + *names_p = names;
> return SVN_NO_ERROR;
> }
>
>
>
>

-- 
Greg Stein, http://www.lyra.org/
Received on Sat Oct 21 14:36:19 2006

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.