Skip to content

Ensure last chunk of XML data is parsed #547

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Sources/FoundationXML/XMLParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -603,10 +603,7 @@ open class XMLParser : NSObject {
var result = true
var chunkStart = 0
var chunkEnd = min(_chunkSize, data.count)
while result {
if chunkStart >= data.count || chunkEnd >= data.count {
break
}
while result && chunkStart != chunkEnd {
let chunk = data[chunkStart..<chunkEnd]
result = parseData(chunk)
chunkStart = chunkEnd
Expand Down