xmllite: Avoid dead initialization (clang).

This commit is contained in:
Frédéric Delanoy 2012-12-20 00:29:19 +01:00 committed by Alexandre Julliard
parent bc4e1efce3
commit 2952db6403
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ static int readerinput_get_utf8_convlen(xmlreaderinput *readerinput)
static int readerinput_get_convlen(xmlreaderinput *readerinput, UINT cp)
{
encoded_buffer *buffer = &readerinput->buffer->encoded;
int len = buffer->written;
int len;
if (cp == CP_UTF8)
len = readerinput_get_utf8_convlen(readerinput);