Changeset 56279 in vbox
- Timestamp:
- Jun 8, 2015 6:09:47 PM (9 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispDbg.cpp
r49449 r56279 428 428 const RECT *pRect = pInfo->pRect; 429 429 UINT bpp = vboxWddmCalcBitsPerPixel(pAlloc->SurfDesc.format); 430 uint32_t width, height, pitch ;430 uint32_t width, height, pitch = 0; 431 431 void *pvData; 432 432 if (pAlloc->LockInfo.fFlags.AreaValid) -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_misc.c
r53088 r56279 709 709 static char txt[8092]; 710 710 711 va_start( args, format ); 712 vsprintf( txt, format, args ); 711 va_start(args, format); 712 vsprintf(txt, format, args); 713 va_end(args); 713 714 714 715 OutputDebugString(txt); -
trunk/src/VBox/Runtime/r3/xml.cpp
r53597 r56279 154 154 va_start(args, pcszContext); 155 155 RTStrAPrintfV(&pszContext2, pcszContext, args); 156 va_end(args); 156 157 char *newMsg; 157 158 RTStrAPrintf(&newMsg, "%s: %d(%s)", pszContext2, aRC, RTErrGetShort(aRC));
Note:
See TracChangeset
for help on using the changeset viewer.