Fwd: Quick way to run out of memory

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
cbc
Reply | Threaded
Open this post in threaded view
|

Fwd: Quick way to run out of memory

cbc
Forwarded to the list I wanted to send to.
---------- Forwarded message ----------
Date: Fri, Jan 27, 2017 at 9:08 AM

do:

String new: -1

Yes, it doesn't really run out of memory, it's just a bug in ByteString>>basicNew:

(ec == #'insufficient object memory' or: [ec == #'bad argument']) ifTrue:
[^self handleFailingBasicNew: sizeRequested].

The VM gives us a nice error code telling us the arguement is bad, and then our code proceeds to assume it is out of memory instead.

Bug verified in latest Trunk (as of now), and raw 5.1 image.

A proposed fix is in the inbox:

This fix uses the old " self error: " pattern.  If you'd prefer a new error for invalid argument, I would be happy to post a variant for that.

Thanks,
-cbc