Commit f3c1123a authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

windowscodecs: Avoid dead assignment (scan-build).

parent 7c0032b6
...@@ -242,7 +242,6 @@ static HRESULT get_token(struct string_t *elem, PROPVARIANT *id, PROPVARIANT *sc ...@@ -242,7 +242,6 @@ static HRESULT get_token(struct string_t *elem, PROPVARIANT *id, PROPVARIANT *sc
bstr = next_token.u.bstrVal; bstr = next_token.u.bstrVal;
end++; end++;
p = end;
while (*end && *end != '}' && end - start < elem->len) while (*end && *end != '}' && end - start < elem->len)
{ {
if (*end == '\\') end++; if (*end == '\\') end++;
......
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