Changeset 33540 in vbox for trunk/src/VBox/Runtime/common/ldr
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Runtime/common/ldr
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrELFRelocatable.cpp.h
r28800 r33540 182 182 183 183 /* 184 * Determin the symbol value.184 * Determine the symbol value. 185 185 * 186 186 * Symbols needs different treatment depending on which section their are in. … … 226 226 227 227 /* 228 * All other symbols are ad ressed relative to their section and need to be fixed up.228 * All other symbols are addressed relative to their section and need to be fixed up. 229 229 */ 230 230 default: … … 341 341 342 342 /* 343 * Trun acated 32-bit value (zero-extendedable to the 64-bit value).343 * Truncated 32-bit value (zero-extendedable to the 64-bit value). 344 344 */ 345 345 case R_X86_64_32: … … 1045 1045 { 1046 1046 /* 1047 * Validate the section headers, allocate memory for the sections (determin the image size),1047 * Validate the section headers, allocate memory for the sections (determine the image size), 1048 1048 * and find relevant sections. 1049 1049 */ -
trunk/src/VBox/Runtime/common/ldr/ldrEx.cpp
r28800 r33540 101 101 102 102 /* 103 * Create image inte preter instance depending on the signature.103 * Create image interpreter instance depending on the signature. 104 104 */ 105 105 if (uSign.u32 == IMAGE_NT_SIGNATURE) … … 240 240 * @param hLdrMod The loader module handle. 241 241 * @param pvBits Where the image bits are. 242 * Must 've been passed to RTLdrGetBits().242 * Must have been passed to RTLdrGetBits(). 243 243 * @param NewBaseAddress The new base address. 244 244 * @param OldBaseAddress The old base address. -
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r28800 r33540 889 889 890 890 /* The rest matches except for BaseOfData which has been merged into ImageBase in the 64-bit version.. 891 * Thus, ImageBase needs some special treat ement. It will probably work fine assigning one to the891 * Thus, ImageBase needs some special treatment. It will probably work fine assigning one to the 892 892 * other since this is all declared volatile, but taking now chances, we'll use a temp variable. 893 893 */ … … 1470 1470 } 1471 1471 1472 /** @todo Rainy Day: Implement further ver fication using openssl. */1472 /** @todo Rainy Day: Implement further verification using openssl. */ 1473 1473 1474 1474 /* next */
Note:
See TracChangeset
for help on using the changeset viewer.