mirror of
https://github.com/reactos/wine.git
synced 2025-02-21 21:32:01 +00:00
usp10: Check for pointer before using it (Coverity).
This commit is contained in:
parent
4b524f91e2
commit
d845510170
@ -2737,7 +2737,7 @@ HRESULT WINAPI ScriptShapeOpenType( HDC hdc, SCRIPT_CACHE *psc,
|
|||||||
((ScriptCache *)*psc)->userLang = tagLangSys;
|
((ScriptCache *)*psc)->userLang = tagLangSys;
|
||||||
|
|
||||||
/* set fNoGlyphIndex non truetype/opentype fonts */
|
/* set fNoGlyphIndex non truetype/opentype fonts */
|
||||||
if (!psa->fNoGlyphIndex && !((ScriptCache *)*psc)->sfnt)
|
if (psa && !psa->fNoGlyphIndex && !((ScriptCache *)*psc)->sfnt)
|
||||||
psa->fNoGlyphIndex = TRUE;
|
psa->fNoGlyphIndex = TRUE;
|
||||||
|
|
||||||
/* Initialize a SCRIPT_VISATTR and LogClust for each char in this run */
|
/* Initialize a SCRIPT_VISATTR and LogClust for each char in this run */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user