Commit 2bfb3ef6 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

dwrite: Initialize a variable (Coverity).

parent c7e9ffa7
...@@ -845,7 +845,7 @@ static HRESULT WINAPI dwritetextanalyzer_GetGlyphs(IDWriteTextAnalyzer2 *iface, ...@@ -845,7 +845,7 @@ static HRESULT WINAPI dwritetextanalyzer_GetGlyphs(IDWriteTextAnalyzer2 *iface,
{ {
const struct dwritescript_properties *scriptprops; const struct dwritescript_properties *scriptprops;
struct scriptshaping_context context; struct scriptshaping_context context;
struct scriptshaping_cache *cache; struct scriptshaping_cache *cache = NULL;
WCHAR *string; WCHAR *string;
BOOL update_cluster; BOOL update_cluster;
UINT32 i, g; UINT32 i, g;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment