Thread overview | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
August 26, 2013 [Issue 10898] New: LcokingTextWriter segfault in .init state | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10898 Summary: LcokingTextWriter segfault in .init state Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Phobos AssignedTo: nobody@puremagic.com ReportedBy: dmitry.olsh@gmail.com --- Comment #0 from Dmitry Olshansky <dmitry.olsh@gmail.com> 2013-08-26 04:02:21 PDT --- Test case import std.stdio; unittest { static auto useInit(T)(T ltw) { T val; val = ltw; return val; } useInit(stdout.lockingTextWriter()); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 26, 2013 [Issue 10898] LcokingTextWriter segfaults in .init state | ||||
---|---|---|---|---|
| ||||
Posted in reply to Dmitry Olshansky | http://d.puremagic.com/issues/show_bug.cgi?id=10898 Dmitry Olshansky <dmitry.olsh@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull Summary|LcokingTextWriter segfault |LcokingTextWriter segfaults |in .init state |in .init state --- Comment #1 from Dmitry Olshansky <dmitry.olsh@gmail.com> 2013-08-26 04:04:20 PDT --- https://github.com/D-Programming-Language/phobos/pull/1523 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 29, 2013 [Issue 10898] LockingTextWriter segfaults in .init state | ||||
---|---|---|---|---|
| ||||
Posted in reply to Dmitry Olshansky | http://d.puremagic.com/issues/show_bug.cgi?id=10898 --- Comment #2 from github-bugzilla@puremagic.com 2013-08-29 00:02:53 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/ba9c8fc3bfcde5e64eda7d28427b33dece12ad69 fix locking text writer postblit/dtor Both should handle T.init correctly Fix issue 10898 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 30, 2013 [Issue 10898] LockingTextWriter segfaults in .init state | ||||
---|---|---|---|---|
| ||||
Posted in reply to Dmitry Olshansky | http://d.puremagic.com/issues/show_bug.cgi?id=10898 monarchdodra@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |monarchdodra@gmail.com Resolution| |FIXED --- Comment #3 from monarchdodra@gmail.com 2013-08-30 07:12:27 PDT --- Also fixes postblit from T.init. unittest { static auto useInit(T)(T ltw) { T val = T.init; val = ltw; return val; } useInit(stdout.lockingTextWriter()); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation