mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 17:01:53 +00:00
[SPEC2DEF] Omit skipped exports from ordinal numbering.
CORE-16769
This commit is contained in:
parent
45e79efd06
commit
c1464a4030
1 changed files with 1 additions and 1 deletions
|
@ -1332,7 +1332,7 @@ ApplyOrdinals(EXPORT* pexports, unsigned cExports)
|
|||
/* Pass 2: apply available ordinals */
|
||||
for (i = 0, j = 1; i < cExports; i++)
|
||||
{
|
||||
if ((pexports[i].uFlags & FL_ORDINAL) == 0)
|
||||
if ((pexports[i].uFlags & FL_ORDINAL) == 0 && pexports[i].bVersionIncluded)
|
||||
{
|
||||
while (used[j] != 0)
|
||||
j++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue