- Timestamp:
- Nov 16, 1999, 7:07:55 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/pe2lx/pe2lx.cpp
r1756 r1757 1 /* $Id: pe2lx.cpp,v 1.1 0 1999-11-16 17:09:31bird Exp $1 /* $Id: pe2lx.cpp,v 1.11 1999-11-16 18:07:55 bird Exp $ 2 2 * 3 3 * Pe2Lx class implementation. Ring 0 and Ring 3 … … 3437 3437 /* Add unused entry which skips to the new ordinal - 1.*/ 3438 3438 pBundle = (struct b32_bundle *)((ULONG)pEntryBundles + offCurEntryBundle); 3439 pBundle->b32_cnt = (UCHAR)(ulOrdinal - ulLastOrdinal +1);3439 pBundle->b32_cnt = (UCHAR)(ulOrdinal - ulLastOrdinal - 1); 3440 3440 pBundle->b32_type = EMPTY; 3441 3441 … … 3625 3625 /* Add unused entry which skips to the new ordinal - 1.*/ 3626 3626 pBundle = (struct b32_bundle *)((ULONG)pEntryBundles + offCurEntryBundle); 3627 pBundle->b32_cnt = (UCHAR)(ulOrdinal - ulLastOrdinal +1);3627 pBundle->b32_cnt = (UCHAR)(ulOrdinal - ulLastOrdinal - 1); 3628 3628 pBundle->b32_type = EMPTY; 3629 3629
Note:
See TracChangeset
for help on using the changeset viewer.