Skip to content
Snippets Groups Projects
Commit 2952db64 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard
Browse files

xmllite: Avoid dead initialization (clang).

parent bc4e1efc
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment