Skip to content

Commit 7ecff2f

Browse files
committed
[pathspec] implement git_pathspec_match_list_diff_entry
1 parent d93e25e commit 7ecff2f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pathspec.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ PHP_FUNCTION(git_pathspec_match_list_entry)
253253
PHP_FUNCTION(git_pathspec_match_list_diff_entry)
254254
{
255255
const git_diff_delta *result = NULL;
256-
zval *m = NULL;
256+
zval *m = NULL, *_result = NULL;
257257
php_git2_t *_m = NULL;
258258
long pos = 0;
259259

@@ -264,7 +264,11 @@ PHP_FUNCTION(git_pathspec_match_list_diff_entry)
264264

265265
ZEND_FETCH_RESOURCE(_m, php_git2_t*, &m, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
266266
result = git_pathspec_match_list_diff_entry(PHP_GIT2_V(_m, pathspec_match_list), pos);
267-
/* TODO(chobie): implement this */
267+
if (result == NULL) {
268+
RETURN_FALSE;
269+
}
270+
php_git2_diff_delta_to_array(result, &_result TSRMLS_CC);
271+
RETURN_ZVAL(_result, 0, 1);
268272
}
269273
/* }}} */
270274

0 commit comments

Comments
 (0)