Commit 81e9ae96 authored by Aida Jonikienė's avatar Aida Jonikienė Committed by Alexandre Julliard

localspl: Fix a maybe-uninitialized warning in fill_builtin_form_info().

parent bd2a2c25
......@@ -3072,7 +3072,7 @@ static void fill_builtin_form_info( BYTE **base, WCHAR **strings, const struct b
DWORD size, DWORD *used )
{
FORM_INFO_2W *info = *(FORM_INFO_2W**)base;
DWORD name_len = wcslen( form->name ) + 1, res_len = 0, keyword_len, total_size;
DWORD name_len = wcslen( form->name ) + 1, res_len = 0, keyword_len = 0, total_size;
static const WCHAR dll_name[] = L"localspl.dll";
const WCHAR *resource;
......
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