A follow-up to the earlier 60 MB view-source crash, this time with a 70 MB buffer to confirm the issue was reproducible and to test whether the increased size changed the crash characteristics.

# create.pl
open(OUT, ">crash.html");
print OUT "<!--";
print OUT "A" x (70 * 1024 * 1024);
print OUT "-->";
close(OUT);

The crash reproduced reliably with the larger buffer. The extra 10 MB did not meaningfully change the crash signature — it crashed at the same location in the view-source buffer handling code. Both reports were filed together to give the team a range of sizes to test against.

Found during my years at Microsoft (2006–2014). These bugs were patched long ago — shared here as a historical record for learning purposes.