Commit 8c8df2c2 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

winex11.drv: Remove dead assignment (Clang).

parent a3e06236
......@@ -660,10 +660,7 @@ static int LookupEntry(LFANDSIZE *plfsz)
for(i = mru; i >= 0; i = glyphsetCache[i].next) {
TRACE("%d\n", i);
if(glyphsetCache[i].count == -1) { /* reached free list so stop */
i = -1;
break;
}
if(glyphsetCache[i].count == -1) break; /* reached free list so stop */
if(!fontcmp(&glyphsetCache[i].lfsz, plfsz)) {
glyphsetCache[i].count++;
......
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