Thread overview
[Issue 19942] [ICE] Segmentation fault in resolvePropertiesX at dmd/expressionsem.d:1112
Jun 05, 2019
Iain Buclaw
Jun 05, 2019
Dlang Bot
Jun 07, 2019
Dlang Bot
Jun 09, 2019
Dlang Bot
Jun 15, 2019
steven kladitis
June 05, 2019
https://issues.dlang.org/show_bug.cgi?id=19942

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ibuclaw@gdcproject.org

--
June 05, 2019
https://issues.dlang.org/show_bug.cgi?id=19942

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull

--- Comment #1 from Dlang Bot <dlang-bot@dlang.rocks> ---
@ibuclaw created dlang/dmd pull request #9980 "fix Issue 19942 - [ICE] Segmentation fault in resolvePropertiesX at dmd/expressionsem.d:1112" fixing this issue:

- fix Issue 19942 - [ICE] Segmentation fault in resolvePropertiesX at dmd/expressionsem.d:1112

https://github.com/dlang/dmd/pull/9980

--
June 07, 2019
https://issues.dlang.org/show_bug.cgi?id=19942

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Dlang Bot <dlang-bot@dlang.rocks> ---
dlang/dmd pull request #9980 "fix Issue 19942 - [ICE] Segmentation fault in resolvePropertiesX at dmd/expressionsem.d:1112" was merged into stable:

- 12c0e67d687505bad803aad64ef9fc5ec9d5f13c by Iain Buclaw:
  fix Issue 19942 - [ICE] Segmentation fault in resolvePropertiesX at
dmd/expressionsem.d:1112

https://github.com/dlang/dmd/pull/9980

--
June 09, 2019
https://issues.dlang.org/show_bug.cgi?id=19942

--- Comment #3 from Dlang Bot <dlang-bot@dlang.rocks> ---
dlang/dmd pull request #10006 "[dmd-cxx] fix Issue 19942 - [ICE] Segmentation fault in resolvePropertiesX at dmd/expressionsem.d:1112" was merged into dmd-cxx:

- a3cc1b7f8ba42560ad82583118bc3ea832e276a3 by Iain Buclaw:
  fix Issue 19942 - [ICE] Segmentation fault in resolvePropertiesX at
dmd/expressionsem.d:1112

https://github.com/dlang/dmd/pull/10006

--
June 15, 2019
https://issues.dlang.org/show_bug.cgi?id=19942

steven kladitis <steven_kladitis@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |steven_kladitis@yahoo.com

--- Comment #4 from steven kladitis <steven_kladitis@yahoo.com> ---
I see this in the latest pull for code.
    if (s->mod != NULL)

I believe it should be
    if (s->mod is not  NULL)

--