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

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range 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: 2fc6a7a2dcfadd5e336a0882d381fbac916f34ff
Choose a base ref
..
head repository: dlang/druntime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: deb84f2e484dbcc0b67d2221797fa55266a122a9
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/rt/dmain2.d
4 changes: 2 additions & 2 deletions src/rt/dmain2.d
Original file line number Diff line number Diff line change
@@ -211,9 +211,9 @@ version (Windows)
version (Win64)
{
ehGetFn ehGet = cast(ehGetFn) GetProcAddress(ptr, "_d_innerEhTable");
if (ehGetFn)
if (ehGet)
{
auto dllTables = ehGetFn();
const(FuncTable)[] dllTables = ehGet();
import rt.sections_win64;

loop: foreach (entry; dllTables)