6
6
*/
7
7
PHP_FUNCTION (git_checkout_head )
8
8
{
9
- int result = 0 ;
10
- zval * repo = NULL ;
9
+ zval * opts = NULL , * repo = NULL ;
11
10
php_git2_t * _repo = NULL ;
12
- zval * opts = NULL ;
13
- int error = 0 , shoud_free = 0 ;
11
+ int result = 0 , error = 0 , shoud_free = 0 ;
14
12
git_checkout_opts * options ;
15
13
16
14
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
@@ -41,15 +39,10 @@ PHP_FUNCTION(git_checkout_head)
41
39
*/
42
40
PHP_FUNCTION (git_checkout_index )
43
41
{
44
- int result = 0 ;
45
- zval * repo = NULL ;
46
- php_git2_t * _repo = NULL ;
47
- zval * index = NULL ;
48
- php_git2_t * _index = NULL ;
49
- zval * opts = NULL ;
50
- int error = 0 ;
42
+ int result = 0 , error = 0 ;
43
+ zval * repo = NULL , * index = NULL , * opts = NULL ;
44
+ php_git2_t * _repo = NULL , * _index = NULL ;
51
45
52
- /* TODO(chobie): generate converter */
53
46
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
54
47
"rra" , & repo , & index , & opts ) == FAILURE ) {
55
48
return ;
@@ -62,22 +55,18 @@ PHP_FUNCTION(git_checkout_index)
62
55
}
63
56
/* }}} */
64
57
58
+
65
59
/* {{{ proto long git_checkout_tree(resource $repo, resource $treeish, $opts)
66
60
*/
67
61
PHP_FUNCTION (git_checkout_tree )
68
62
{
69
- int result = 0 ;
70
- zval * repo = NULL ;
71
- php_git2_t * _repo = NULL ;
72
- zval * treeish = NULL ;
73
- php_git2_t * _treeish = NULL ;
74
- zval * opts = NULL ;
75
- int error = 0 ;
76
- git_checkout_opts options = GIT_CHECKOUT_OPTS_INIT ;
77
- git_object * __treeish = NULL ;
63
+ int result = 0 , error = 0 ;
64
+ zval * repo = NULL , * treeish = NULL , * opts = NULL ;
65
+ php_git2_t * _repo = NULL , * _treeish = NULL ;
66
+ git_checkout_opts options = {0 };
78
67
79
68
if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC ,
80
- "r|ra " , & repo , & treeish , & opts ) == FAILURE ) {
69
+ "rra " , & repo , & treeish , & opts ) == FAILURE ) {
81
70
return ;
82
71
}
83
72
@@ -93,8 +82,10 @@ PHP_FUNCTION(git_checkout_tree)
93
82
}
94
83
95
84
ZEND_FETCH_RESOURCE (_repo , php_git2_t * , & repo , -1 , PHP_GIT2_RESOURCE_NAME , git2_resource_handle );
96
- result = git_checkout_tree (PHP_GIT2_V (_repo , repository ), __treeish , & options );
85
+ ZEND_FETCH_RESOURCE (_treeish , php_git2_t * , & treeish , -1 , PHP_GIT2_RESOURCE_NAME , git2_resource_handle );
86
+ result = git_checkout_tree (PHP_GIT2_V (_repo , repository ), PHP_GIT2_V (_treeish , object ), opts );
97
87
RETURN_LONG (result );
98
88
}
99
89
/* }}} */
100
90
91
+
0 commit comments