localspl: Fix a maybe-uninitialized warning in fill_builtin_form_info().
This commit is contained in:
parent
bd2a2c25f5
commit
81e9ae96f1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue