- Timestamp:
- Nov 15, 2009 4:07:51 PM (15 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.cpp
r24156 r24678 1139 1139 for(uint32_t i = 0; i < size; ++i) 1140 1140 { 1141 HGSMIHOSTFIFOENTRY *pFifoEntry ;1141 HGSMIHOSTFIFOENTRY *pFifoEntry = NULL; /* initialized to shut up gcc */ 1142 1142 rc = hgsmiHostLoadFifoEntryLocked (pIns, &pFifoEntry, pSSM); AssertRC(rc); 1143 1143 if (RT_SUCCESS (rc)) -
trunk/src/VBox/Devices/Storage/DrvSCSI.cpp
r24245 r24678 610 610 int iTxDir; 611 611 int rcCompletion; 612 uint64_t uOffset ;613 uint32_t cbToTransfer ;614 uint32_t cSegmentsLeft ;612 uint64_t uOffset = UINT64_MAX; /* initialized to shut up gcc warnings. */ 613 uint32_t cbToTransfer = UINT32_MAX; /* ditto */ 614 uint32_t cSegmentsLeft = UINT32_MAX; /* ditto */ 615 615 616 616 LogFlowFunc(("Entered\n")); -
trunk/src/VBox/Devices/Storage/VBoxHDDFormats/AppleDiskImage/VBoxDMG.cpp
r23973 r24678 465 465 466 466 467 /** @copydoc VBOXHDDBACKEND::pfn Open*/467 /** @copydoc VBOXHDDBACKEND::pfnClose */ 468 468 static DECLCALLBACK(int) vboxdmgClose(void *pvBackendData, bool fDelete) 469 469 { -
trunk/src/VBox/Devices/Storage/VmdkHDDCore.cpp
r24256 r24678 2075 2075 2076 2076 /* Get image creation type and determine image flags. */ 2077 const char *pszCreateType ;2077 const char *pszCreateType = NULL; /* initialized to make gcc shut up */ 2078 2078 rc = vmdkDescBaseGetStr(pImage, &pImage->Descriptor, "createType", 2079 2079 &pszCreateType); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp
r24505 r24678 60 60 int handleStorageAttach(HandlerArg *a) 61 61 { 62 int c ;62 int c = VERR_INTERNAL_ERROR; /* initialized to shut up gcc */ 63 63 HRESULT rc = S_OK; 64 64 ULONG port = ~0U; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp
r22333 r24678 382 382 break; 383 383 default: 384 format = QImage::Format_Invalid; /* set it to something so gcc keeps quiet. */ 384 385 remind = true; 385 386 fallback = true; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r24628 r24678 3983 3983 #else 3984 3984 3985 NOREF (aWId); 3985 3986 NOREF (aSwitchDesktop); 3986 3987 AssertFailed(); -
trunk/src/VBox/Main/darwin/NetIf-darwin.cpp
r23144 r24678 281 281 char *pBuf, *pNext; 282 282 int aiMib[6]; 283 unsigned short u16DefaultIface ;283 unsigned short u16DefaultIface = 0; /* initialized to shut up gcc */ 284 284 285 285 /* Get the index of the interface associated with default route. */ -
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.