mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[WIN32K] Fix uninitialized variable in IntExtTextOutW
This commit is contained in:
parent
2e3fe5de90
commit
60af8194bb
1 changed files with 1 additions and 1 deletions
|
@ -6052,7 +6052,7 @@ IntExtTextOutW(
|
|||
SIZEL bitSize;
|
||||
FONTOBJ *FontObj;
|
||||
PFONTGDI FontGDI;
|
||||
PTEXTOBJ TextObj;
|
||||
PTEXTOBJ TextObj = NULL;
|
||||
EXLATEOBJ exloRGB2Dst, exloDst2RGB;
|
||||
POINT Start;
|
||||
PMATRIX pmxWorldToDevice;
|
||||
|
|
Loading…
Reference in a new issue