summaryrefslogtreecommitdiffstats
path: root/svn-upstream.patch
blob: e60571dc1302a6c4cbc205a453806368da9cee54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
--- pecl/svn/trunk/svn.c	2016/05/04 06:34:26	339127
+++ pecl/svn/trunk/svn.c	2016/05/04 07:26:03	339128
@@ -977,6 +977,7 @@
 	apr_pool_t *subpool;
 	svn_opt_revision_t peg_revision;
 	const char *true_path;
+	apr_hash_index_t *hi;
 
 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lbb",
 			&repos_url, &repos_url_len, &revision.value.number, &recurse, &peg) == FAILURE) {
@@ -1021,7 +1022,7 @@
 
 	array_init(return_value);
 
-	for (apr_hash_index_t *hi = apr_hash_first(subpool, dirents); hi; hi = apr_hash_next(hi)) {
+	for (hi = apr_hash_first(subpool, dirents); hi; hi = apr_hash_next(hi)) {
 		const char *utf8_entryname;
 		svn_dirent_t *dirent;
 		apr_time_t now = apr_time_now();
@@ -1031,9 +1032,10 @@
 		char timestr[20];
 		const char   *utf8_timestr;
 		zval 	*row;
+		const char *key;
 
-		svn_utf_cstring_to_utf8 (&utf8_entryname, apr_hash_this_key(hi), subpool);
-		dirent = apr_hash_this_val(hi);
+		apr_hash_this(hi, &key, NULL, &dirent);
+		svn_utf_cstring_to_utf8 (&utf8_entryname, key, subpool);
 
 		/* svn_time_to_human_cstring gives us something *way* too long
 		to use for this, so we have to roll our own.  We include
@@ -1101,6 +1103,7 @@
 {
 	struct php_svn_log_receiver_baton *baton = (struct php_svn_log_receiver_baton*) ibaton;
 	zval  *row, *paths;
+	apr_hash_index_t *hi;
 	TSRMLS_FETCH();
 
 	if (rev == 0) {
@@ -1127,7 +1130,7 @@
 		MAKE_STD_ZVAL(paths);
 		array_init(paths);
 
-		for (apr_hash_index_t *hi = apr_hash_first(pool, changed_paths); hi; hi = apr_hash_next(hi)) {
+		for (hi = apr_hash_first(pool, changed_paths); hi; hi = apr_hash_next(hi)) {
 			svn_log_changed_path_t *log_item;
 			zval *zpaths;
 			const char *path;
@@ -1135,8 +1138,7 @@
 			MAKE_STD_ZVAL(zpaths);
 			array_init(zpaths);
 
-			path = apr_hash_this_key(hi);
-			log_item = apr_hash_this_val(hi);
+			apr_hash_this(hi, &path, NULL, &log_item);
 
 			add_assoc_stringl(zpaths, "action", &(log_item->action), 1,1);
 			add_assoc_string(zpaths, "path", path, 1);
--- pecl/svn/trunk/svn.c	2016/05/04 07:26:03	339128
+++ pecl/svn/trunk/svn.c	2016/05/04 07:32:45	339129
@@ -1154,7 +1154,7 @@
 			add_assoc_zval(paths, path, zpaths);
 		}
 
-		zend_hash_sort(Z_ARRVAL_P(paths), zend_qsort, compare_keys_as_paths, 1);
+		zend_hash_sort(Z_ARRVAL_P(paths), zend_qsort, compare_keys_as_paths, 1 TSRMLS_CC);
 		add_assoc_zval(row,"paths",paths);
 	}