mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 20:18:22 +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;
|
SIZEL bitSize;
|
||||||
FONTOBJ *FontObj;
|
FONTOBJ *FontObj;
|
||||||
PFONTGDI FontGDI;
|
PFONTGDI FontGDI;
|
||||||
PTEXTOBJ TextObj;
|
PTEXTOBJ TextObj = NULL;
|
||||||
EXLATEOBJ exloRGB2Dst, exloDst2RGB;
|
EXLATEOBJ exloRGB2Dst, exloDst2RGB;
|
||||||
POINT Start;
|
POINT Start;
|
||||||
PMATRIX pmxWorldToDevice;
|
PMATRIX pmxWorldToDevice;
|
||||||
|
|
Loading…
Reference in a new issue