-
Notifications
You must be signed in to change notification settings - Fork 92
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
OOM on malformed input #35
Milestone
Comments
Fixed by #44 ? |
ashawley
added a commit
to ashawley/scala-xml
that referenced
this issue
Feb 15, 2016
* src/test/scala/scala/xml/XMLTest.scala (issue35): New test. * src/test/scala/scala/xml/pull/XMLEventReaderTest.scala (issue35): New test.
ashawley
pushed a commit
to ashawley/scala-xml
that referenced
this issue
Feb 15, 2016
* src/main/scala/scala/xml/parsing/MarkupParserCommon.scala (xAttributeValue): Check for eof in while loop.
This was referenced Feb 15, 2016
biswanaths
pushed a commit
that referenced
this issue
Apr 21, 2016
* src/test/scala/scala/xml/XMLTest.scala (issue35): New test. * src/test/scala/scala/xml/pull/XMLEventReaderTest.scala (issue35): New test.
biswanaths
pushed a commit
that referenced
this issue
Apr 21, 2016
* src/test/scala/scala/xml/XMLTest.scala (issue35): New test. * src/test/scala/scala/xml/pull/XMLEventReaderTest.scala (issue35): New test.
biswanaths
pushed a commit
that referenced
this issue
Apr 21, 2016
* src/main/scala/scala/xml/parsing/MarkupParserCommon.scala (xAttributeValue): Check for eof in while loop.
biswanaths
pushed a commit
that referenced
this issue
Apr 21, 2016
* src/test/scala/scala/xml/XMLTest.scala (issue35): New test. * src/test/scala/scala/xml/pull/XMLEventReaderTest.scala (issue35): New test.
biswanaths
pushed a commit
that referenced
this issue
Apr 21, 2016
* src/main/scala/scala/xml/parsing/MarkupParserCommon.scala (xAttributeValue): Check for eof in while loop.
shimamoto
added a commit
to shimamoto/scala-xml
that referenced
this issue
Apr 27, 2016
This commit make up for the lack of scala#35. Specifically, CDATA sections, comment, DTD.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ch
returns0.asInstancsOf[Char]
every time it is called, whileMarkupParserCommon.xAttributeValue
loops untilch
returns endCh, happily appending all the zeros to its internal string buffer.The text was updated successfully, but these errors were encountered: