Bug creation and email sending has been disabled, file new bugs at gcc.gnu.org/bugzilla

Bug 29

Summary: std.string.format and std.string.text makes "SEGMENTATION FAULT"
Product: GDC Reporter: Andrey <vangelisforever>
Component: libgphobosAssignee: Iain Buclaw <ibuclaw>
Status: RESOLVED WORKSFORME    
Severity: normal CC: ajbonkoski
Priority: ---    
Version: 4.7.x   
Hardware: x86   
OS: Linux   

Description Andrey 2012-12-14 05:13:18 CET
Hi everyone!
Try this sample in your code:

string s;
for (int i=0; i<100000; i++)
 s=std.string.format("%d", i); // or s = std.string.text(i);

and this code will fail after some iteration time.

Thank you.
Comment 1 Iain Buclaw 2013-03-28 11:24:46 CET
I can no longer reproduce this.