<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<meta content="text/html; charset=UTF-8">
<style type="text/css" style="">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<p>Reproduced on Windows 21H1/OSVM <span>202112201228.</span></p>
<p><span><br>
</span></p>
<p><span>Best,</span></p>
<p><span>Christoph</span></p>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>Von:</b> Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von Jörg Belger <unique75@web.de><br>
<b>Gesendet:</b> Donnerstag, 3. Februar 2022 22:30:49<br>
<b>An:</b> The general-purpose Squeak developers list<br>
<b>Betreff:</b> [squeak-dev] Crash</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">This leads to an image/VM crash too<br>
<br>
        | oc |<br>
        oc := OrderedCollection new.<br>
        400000000 timesRepeat: [oc add: Object new]<br>
<br>
This here is working for me:<br>
<br>
        | oc |<br>
        oc := OrderedCollection new: 400000000.<br>
        400000000 timesRepeat: [oc add: Object new]<br>
<br>
This here is working too for me:<br>
<br>
        | oc |<br>
        oc := OrderedCollection new.<br>
        400000000 timesRepeat: [oc add: 1]<br>
<br>
It seems there is possibly a memory problem in the VM.<br>
<br>
<br>
</div>
</span></font>
</body>
</html>