Rev 1962: Sanitize paths in client. in file:///data/jelmer/bzr-svn/trunk/

Jelmer Vernooij jelmer at samba.org
Sat Nov 8 17:20:40 GMT 2008


At file:///data/jelmer/bzr-svn/trunk/

------------------------------------------------------------
revno: 1962
revision-id: jelmer at samba.org-20081108172038-5q5q6bo1058q3k3j
parent: jelmer at samba.org-20081108155846-dx9upvxrlrddd2yk
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: trunk
timestamp: Sat 2008-11-08 18:20:38 +0100
message:
  Sanitize paths in client.
modified:
  subvertpy/subvertpy/client.c   client.pyx-20080313235339-wbyjbw2namuiql8f-1
=== modified file 'subvertpy/subvertpy/client.c'
--- a/subvertpy/subvertpy/client.c	2008-11-08 14:31:15 +0000
+++ b/subvertpy/subvertpy/client.c	2008-11-08 17:20:38 +0000
@@ -373,7 +373,7 @@
 	temp_pool = Pool(NULL);
 	if (temp_pool == NULL)
 		return NULL;
-	if (!string_list_to_apr_array(temp_pool, targets, &apr_targets)) {
+	if (!path_list_to_apr_array(temp_pool, targets, &apr_targets)) {
 		apr_pool_destroy(temp_pool);
 		return NULL;
 	}
@@ -402,7 +402,7 @@
 	temp_pool = Pool(NULL);
 	if (temp_pool == NULL)
 		return NULL;
-	if (!string_list_to_apr_array(temp_pool, paths, &apr_paths)) {
+	if (!path_list_to_apr_array(temp_pool, paths, &apr_paths)) {
 		apr_pool_destroy(temp_pool);
 		return NULL;
 	}
@@ -515,7 +515,7 @@
 	temp_pool = Pool(NULL);
 	if (temp_pool == NULL)
 		return NULL;
-	if (!string_list_to_apr_array(temp_pool, paths, &apr_paths)) {
+	if (!path_list_to_apr_array(temp_pool, paths, &apr_paths)) {
 		apr_pool_destroy(temp_pool);
 		return NULL;
 	}




More information about the bazaar-commits mailing list