Commit 2952db64 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

xmllite: Avoid dead initialization (clang).

parent bc4e1efc
......@@ -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);
......
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