Bug 1788592 Comment 13 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

We're throwing an exception because of:
```c
 if (0 == (idd.grAttrs & dlattrRva)) {
        PDelayLoadInfo  rgpdli[1] = { &dli };
        DloadReleaseSectionWriteAccess();
        RaiseException(
            VcppException(ERROR_SEVERITY_ERROR, ERROR_INVALID_PARAMETER),
            0,
            1,
            PULONG_PTR(rgpdli)
            );
        return 0;
        }

```
with
```
 idd.grAttrs = 0x2fa32438
 dlattrRva = dlattrRva (0x00000001)
```
We're throwing an exception because `LoadLibrary` fails with `0x5`

Back to Bug 1788592 Comment 13