Commit 994382b2 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Skip the first character of a font identifier if it's \ or &.

parent 1d296543
......@@ -193,8 +193,8 @@ static LPWSTR msi_dialog_get_style( LPCWSTR p, LPCWSTR *rest )
q = strchrW( p, '}' );
if( !q )
return ret;
if( *p++ != '\\' )
return ret;
if( *p == '\\' || *p == '&' )
p++;
/* little bit of sanity checking to stop us getting confused with RTF */
for( i=p; i<q; i++ )
......
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