mirror of
https://github.com/reactos/reactos.git
synced 2025-05-16 15:50:24 +00:00
[OPENGL32]
- Fix uninitialized variable use in IntGetIcdData CORE-11474 svn path=/trunk/; revision=74376
This commit is contained in:
parent
424bbf064b
commit
85f31b899e
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ struct ICD_Data* IntGetIcdData(HDC hdc)
|
|||
Drv_Opengl_Info DrvInfo;
|
||||
pDrv_Opengl_Info pDrvInfo;
|
||||
struct ICD_Data* data;
|
||||
HKEY OglKey, DrvKey, CustomKey;
|
||||
HKEY OglKey = NULL;
|
||||
HKEY DrvKey, CustomKey;
|
||||
WCHAR DllName[MAX_PATH];
|
||||
BOOL (WINAPI *DrvValidateVersion)(DWORD);
|
||||
void (WINAPI *DrvSetCallbackProcs)(int nProcs, PROC* pProcs);
|
||||
|
|
Loading…
Reference in a new issue