Changeset 21916 for trunk/src/kernel32/winimagepe2lx.cpp
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/kernel32/winimagepe2lx.cpp
r10397 r21916 440 440 + strlen((char*)pLrec->pName) + 1 /* size of the filename */ 441 441 + 3) & ~3)); /* the size is align on 4 bytes boundrary */ 442 #ifdef __INNOTEK_LIBC__ 443 pLrec->pNextRec = (void **)(qsLrec_t*)((char*)pLrec->pObjInfo 444 + sizeof(qsLObjrec_t) * pLrec->ctObj); 445 #else 442 446 pLrec->pNextRec = (qsLrec_t*)((char*)pLrec->pObjInfo 443 447 + sizeof(qsLObjrec_t) * pLrec->ctObj); 448 #endif 444 449 } 445 450 if (pLrec->hmte == hmod) … … 549 554 550 555 /* loop thru the PE sections */ 551 for (int i = 0; i < pNtHdrs->FileHeader.NumberOfSections; i++) 556 int i; 557 for (i = 0; i < pNtHdrs->FileHeader.NumberOfSections; i++) 552 558 { 553 559 if (paSections[0].cbVirtual < paPESections[i].VirtualAddress)
Note:
See TracChangeset
for help on using the changeset viewer.