Comment 5 for bug 1197059

Revision history for this message
Adam Dingle (adam-yorba) wrote :

Unfortunately I can't reproduce this crash at will - it happens only occasionally when running a large Scala program. I attempted to reproduce this using the following test program (in Scala), but it runs fine:

===
import java.io.File
import javax.imageio.ImageIO

object Hello extends App {
    val file = new File("/home/adam/Desktop/Ginger_Ibex_1382.jpeg")
    for (i <- 1 to 20000) {
        val image = ImageIO.read(file)
    }
    println("success")
}
===

Fergus, if you can provide a program that actually repeats the crash I'd be happy to investigate more deeply.