summaryrefslogtreecommitdiff
path: root/test/files/run/t8100.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-8100 - prevent possible SOE during Stream#flatten.Erik Osheim2013-12-241-0/+1
This commit changes stream flatten to avoid allocating a stack frame for every stream item. Previously, flattening a stream whose elements are mostly empty would result in a StackOverflowException. This commit also adds a test demonstrating the problem.