Changeset 24678 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Nov 15, 2009 4:07:51 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54860
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrELFRelocatable.cpp.h
r21337 r24678 1026 1026 if (RT_SUCCESS(rc)) 1027 1027 { 1028 RTLDRARCH enmArchImage ;1028 RTLDRARCH enmArchImage = RTLDRARCH_INVALID; /* shut up gcc */ 1029 1029 rc = RTLDRELF_NAME(ValidateElfHeader)(&pModElf->Ehdr, pszLogName, cbRawImage, &enmArchImage); 1030 1030 if (RT_SUCCESS(rc)) -
trunk/src/VBox/Runtime/common/string/base64.cpp
r21337 r24678 252 252 * Process input in groups of 4 input / 3 output chars. 253 253 */ 254 uint8_t u8Trio[3] ;254 uint8_t u8Trio[3] = { 0, 0, 0 }; /* shuts up gcc */ 255 255 uint8_t *pbData = (uint8_t *)pvData; 256 256 uint8_t u8 = BASE64_INVALID;
Note:
See TracChangeset
for help on using the changeset viewer.