Bug 1147264
| Summary: | D program segfault when reading a big file (~1M) | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Julien Enselme <jujens> | ||||||||
| Component: | ldc | Assignee: | MERCIER Jonathan <bioinfornatics> | ||||||||
| Status: | CLOSED WORKSFORME | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||
| Severity: | high | Docs Contact: | |||||||||
| Priority: | unspecified | ||||||||||
| Version: | 20 | CC: | bioinfornatics, i, jujens | ||||||||
| Target Milestone: | --- | ||||||||||
| Target Release: | --- | ||||||||||
| Hardware: | x86_64 | ||||||||||
| OS: | Linux | ||||||||||
| Whiteboard: | |||||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||||
| Doc Text: | Story Points: | --- | |||||||||
| Clone Of: | Environment: | ||||||||||
| Last Closed: | 2015-06-01 08:50:27 UTC | Type: | Bug | ||||||||
| Regression: | --- | Mount Type: | --- | ||||||||
| Documentation: | --- | CRM: | |||||||||
| Verified Versions: | Category: | --- | |||||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||||
| Embargoed: | |||||||||||
| Attachments: |
|
||||||||||
Created attachment 941999 [details]
The big file I am trying to read
Updating to ldc 0.13 did not solve the problem (I used the packaged available here: http://koji.fedoraproject.org/koji/buildinfo?buildID=559947). I updated the spec so the packages are update to version 0.14. It solves the problem. I just had a strange problem in the process. If I compiled ldc manually (without trying to create a rpms) it worked fine. However, when I tried to build the RPMS I got the following error: CMake Error at runtime/CMakeLists.txt:760 (get_property): get_property could not find TARGET druntime-ldc. Perhaps it has not yet been created. I simply removed the line and everything looked fine. Created attachment 946023 [details]
SPEC file to build the ldc 0.14
Sorry for delay, I was'nt allowed to push ldc version 0.14 due to some regression I will push 0.15 SOON :-) This package has changed ownership in the Fedora Package Database. Reassigning to the new owner of this component. This message is a reminder that Fedora 20 is nearing its end of life. Approximately 4 (four) weeks from now Fedora will stop maintaining and issuing updates for Fedora 20. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At that time this bug will be closed as EOL if it remains open with a Fedora 'version' of '20'. Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, simply change the 'version' to a later Fedora version. Thank you for reporting this issue and we are sorry that we were not able to fix it before Fedora 20 is end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged change the 'version' to a later Fedora version prior this bug is closed as described in the policy above. Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete. This is fixed in fedora 22 with ldc2 0.15.0 Closing manually. |
Created attachment 941998 [details] Test program Description of problem: When I try to read a big file (around 1M) using a D program compiled with ldc, I get a segfault error. How reproducible: Download the basic test program which is attached and the file. Compile and run the program. The bug will appear. Steps to Reproduce: 1. ldc2 test.d 2. ./test Actual results: [1] 30662 segmentation fault (core dumped) ./test Expected results: The returned code should be 0. Additional info: I tested this program on Manjaro and it works as expected (version 0.14.0)