Skip to content

Commit 4ed2fed

Browse files
committedMay 14, 2017
Fix Bug in rure_captures_len
It looks like at some point in the past the captures were refactored from being a vector of start and end positions into a list of location structures. The C API still had a conversion of the length which corrected for the captures being twice the length of the number of captures. This updates the length calculation in `rure.rs` to return the correct length, and adds an assertion to the test case.
1 parent e9f8318 commit 4ed2fed

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
 

‎regex-capi/ctest/test.c

+13
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,19 @@ bool test_captures() {
102102
}
103103
passed = false;
104104
}
105+
size_t expect_captures_len = 3;
106+
size_t captures_len = rure_captures_len(caps);
107+
if (captures_len != expect_captures_len) {
108+
if (DEBUG) {
109+
fprintf(stderr,
110+
"[test_captures] "
111+
"expected capture group lenght to be %zd, but "
112+
"got %zd\n",
113+
expect_captures_len, captures_len);
114+
}
115+
passed = false;
116+
goto done;
117+
}
105118
int32_t expect_capture_index = 2;
106119
int32_t capture_index = rure_capture_name_index(re, "snowman");
107120
if (capture_index != expect_capture_index) {

‎regex-capi/src/rure.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ ffi_fn! {
434434

435435
ffi_fn! {
436436
fn rure_captures_len(captures: *const Captures) -> size_t {
437-
unsafe { (*captures).0.len() / 2 }
437+
unsafe { (*captures).0.len() }
438438
}
439439
}
440440

0 commit comments

Comments
 (0)