recompute ovecSlice #2

Open
jettero wants to merge 1 commits from jettero/pcre:recompute-ovecSlice into master
1 changed files with 2 additions and 2 deletions

View File

@ -591,8 +591,8 @@ func (r *Regexp) SetCallout(fn func(cb *CalloutBlock) int32) error {
calloutStrBytes := unsafe.Slice((*byte)(unsafe.Pointer(ccb.Fcallout_string)), ccb.Fcallout_string_length)
cb.CalloutString = string(calloutStrBytes)
ovecSlice := unsafe.Slice((*lib.Tsize_t)(unsafe.Pointer(ccb.Foffset_vector)), (ccb.Fcapture_top*2)-1)
ovecSlice := unsafe.Slice((*lib.Tsize_t)(unsafe.Pointer(ccb.Foffset_vector)), 2+(ccb.Fcapture_top-1)*2)
Review

The 2+ isn't needed because that's what the ovecSlice = ovecSlice[2:] line is for. Otherwise, this looks good, thanks.

The `2+` isn't needed because that's what the `ovecSlice = ovecSlice[2:]` line is for. Otherwise, this looks good, thanks.
if len(ovecSlice) > 2 {
ovecSlice = ovecSlice[2:]
for i := 0; i < len(ovecSlice); i += 2 {