Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dlang/druntime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 40903b2
Choose a base ref
...
head repository: dlang/druntime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0b9c4c6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 18, 2011

  1. Fix range violaions in Posix exception handling code.

    The code would previously lead to a range violation (and thus an infinite loop because an exception was thrown during exception handling) when druntime was built without bounds checking disabled.
    
    At first sight it seems like the old code could work, but what really happens is that it first index into the (dummy) length 1 static array, and then takes the address, not the other way round.
    
    phi and pcb are intended to be pointers to DHandlerInfo/DCatchBlock, this is also what the original C code did.
    dnadlinger committed Nov 18, 2011
    Configuration menu
    Copy the full SHA
    272e878 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #85 from klickverbot/eh-range-violation

    Fix range violaions in Posix exception handling code.
    complexmath committed Nov 18, 2011
    Configuration menu
    Copy the full SHA
    0b9c4c6 View commit details
    Browse the repository at this point in the history
Loading