go : reset context.n in Process() (#3503)

This commit is contained in:
Josh Montoya 2025-12-08 08:33:07 -08:00 committed by GitHub
parent a88b93f85f
commit a8f45ab11d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -237,6 +237,9 @@ func (context *context) Process(
return err
}
// Reset n so that more Segments can be available within NextSegment call
context.n = 0
// Return success
return nil
}