- Timestamp:
- Dec 16, 2010 7:37:00 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69000
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r33540 r35163 2906 2906 */ 2907 2907 PCDBGCVAR pRange = cArgs > 0 ? &paArgs[0] : pDbgc->pLastPos; 2908 RTGCPTR GCPtrFirst ;2908 RTGCPTR GCPtrFirst = NULL; 2909 2909 int rc = DBGCCmdHlpVarToFlatAddr(pCmdHlp, pRange, &GCPtrFirst); 2910 2910 if (RT_FAILURE(rc)) -
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.cpp
r33540 r35163 1692 1692 static int hgsmiGuestCommandComplete (HGSMIINSTANCE *pIns, HGSMIOFFSET offMem) 1693 1693 { 1694 HGSMIGUESTCOMPLENTRY *pEntry ;1694 HGSMIGUESTCOMPLENTRY *pEntry = NULL; 1695 1695 1696 1696 int rc = hgsmiGuestCompletionFIFOAlloc (pIns, &pEntry); -
trunk/src/VBox/Devices/Network/slirp/tcp_output.c
r34103 r35163 100 100 unsigned optlen, hdrlen; 101 101 int idle, sendalot; 102 int size ;102 int size = 0; 103 103 104 104 LogFlow(("tcp_output: tp = %lx\n", (long)tp)); -
trunk/src/VBox/NetworkServices/NetLib/VBoxNetIntIf.cpp
r28800 r35163 98 98 * Allocate a frame, copy the data and commit it. 99 99 */ 100 PINTNETHDR pHdr ;101 void *pvFrame ;100 PINTNETHDR pHdr = NULL; 101 void *pvFrame = NULL; 102 102 int rc = IntNetRingAllocateFrame(pRingBuf, cbFrame, &pHdr, &pvFrame); 103 103 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.