digitalmars.D.bugs - [Issue 5493] New: Able to overwrite immutable data
- d-bugmail puremagic.com (30/30) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (10/10) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (22/22) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (14/14) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (10/10) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (13/13) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (10/10) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (10/10) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (13/13) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (11/11) Jan 26 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (14/14) Jan 27 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (10/10) May 10 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (10/10) Jun 12 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (6/6) Jul 12 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (6/6) Dec 12 2011 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (11/11) Jan 16 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5493
- d-bugmail puremagic.com (10/10) Feb 12 2012 http://d.puremagic.com/issues/show_bug.cgi?id=5493
http://d.puremagic.com/issues/show_bug.cgi?id=5493
Summary: Able to overwrite immutable data
Product: D
Version: D2
Platform: x86_64
OS/Version: Mac OS X
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: nobody puremagic.com
ReportedBy: robert.welin hotmail.com
Hello, I wrote a simple D program to test the immutable attribute and
discovered that by using standard input I could change immutable data, see code
below.
import std.stdio;
void main() {
//Initialize string buf
immutable char[] buf = "hello";
writefln("buf = %s",buf);
//Change value of buf with standard input
stdin.readln(buf);
writefln("buf = %s",buf);
}
Cheers
Robert
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
Steven Schveighoffer <schveiguy yahoo.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mrmocool gmx.de
13:10:21 PST ---
*** Issue 5492 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
Andrei Alexandrescu <andrei metalanguage.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P5
Status|NEW |ASSIGNED
CC| |andrei metalanguage.com
AssignedTo|nobody puremagic.com |bugzilla digitalmars.com
Severity|normal |major
13:14:44 PST ---
Reduced to:
void main()
{
immutable char[] buf = "hello";
void fun(ref immutable(char)[] a) {}
fun(buf);
}
This is a major bug. Please vote. Walter, it would be great if you gave this
the utmost attention.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
Trass3r <mrmocool gmx.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|Phobos |DMD
Platform|x86_64 |All
OS/Version|Mac OS X |All
Seems to compile on all platforms.
Runs fine on Windows.
Segfaults on Linux, doesn't when using 'string buf' instead.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dsimcha yahoo.com
*** Issue 5273 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dsimcha yahoo.com
CC| |andrej.mitrovich gmail.com
*** Issue 5273 has been marked as a duplicate of this issue. ***
*** Issue 4832 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |simen.kjaras gmail.com
*** Issue 5291 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bearophile_hugs eml.cc
*** Issue 4416 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bearophile_hugs eml.cc
CC| |smjg iname.com
*** Issue 4416 has been marked as a duplicate of this issue. ***
*** Issue 3534 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |yebblies gmail.com
Others marked as duplicates as this is the version that has the most votes,
highest priority and is the only one that has been assigned.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 26 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
Stewart Gordon <smjg iname.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks| |2573
Summary|Able to overwrite immutable |Able to overwrite immutable
|data |data by passing through ref
| |function parameter
There are several bugs whereby one can overwrite immutable data. See issue
2573.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 27 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
Stewart Gordon <smjg iname.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |marcianx gmail.com
*** Issue 5958 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 10 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |patch
https://github.com/D-Programming-Language/dmd/pull/114
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jun 12 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493 13:05:59 PDT --- *** Issue 6298 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jul 12 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493 --- https://github.com/D-Programming-Language/dmd/pull/558 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Dec 12 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5493
Walter Bright <bugzilla digitalmars.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
10:38:11 PST ---
https://github.com/D-Programming-Language/dmd/commit/47ad405f25ffefb9781ca9eed89de61025ca82ac
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 16 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5493
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |deadalnix gmail.com
*** Issue 7486 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Feb 12 2012









d-bugmail puremagic.com 