- Timestamp:
- May 26, 2013 10:38:33 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r46266 r46273 1186 1186 case IMAGE_DEBUG_TYPE_CODEVIEW: 1187 1187 DbgInfo.enmType = RTLDRDBGINFOTYPE_CODEVIEW; 1188 DbgInfo.u.Cv.cbImage = pModPe->cbImage; 1188 1189 DbgInfo.u.Cv.uMajorVer = paDbgDir[i].MajorVersion; 1189 1190 DbgInfo.u.Cv.uMinorVer = paDbgDir[i].MinorVersion; … … 1264 1265 break; 1265 1266 1267 case IMAGE_DEBUG_TYPE_COFF: 1268 DbgInfo.enmType = RTLDRDBGINFOTYPE_COFF; 1269 DbgInfo.u.Coff.cbImage = pModPe->cbImage; 1270 DbgInfo.u.Coff.uMajorVer = paDbgDir[i].MajorVersion; 1271 DbgInfo.u.Coff.uMinorVer = paDbgDir[i].MinorVersion; 1272 DbgInfo.u.Coff.uTimestamp = paDbgDir[i].TimeDateStamp; 1273 break; 1274 1266 1275 default: 1267 1276 DbgInfo.enmType = RTLDRDBGINFOTYPE_UNKNOWN;
Note:
See TracChangeset
for help on using the changeset viewer.