Commit 05cf0bdf authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

msi: Fix error handling in encode_streamname().

parent 27c98fd6
......@@ -189,7 +189,7 @@ LPWSTR encode_streamname(BOOL bTable, LPCWSTR in)
if( next && (next<0x80) )
{
next = utf2mime(next);
if( next >= 0 )
if( next != -1 )
{
next += 0x3ffffc0;
ch += (next<<6);
......
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