https://bugs.winehq.org/show_bug.cgi?id=51728
Bug ID: 51728 Summary: copypasta in pwcache.c:ctox() Product: Wine Version: unspecified Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: mpr Assignee: wine-bugs@winehq.org Reporter: gonzomdx@gmail.com Distribution: ---
In https://source.winehq.org/git/wine.git/blob/refs/heads/master:/dlls/mpr/pwca...
if( ( x >= 'a' ) && ( x <= 'a' ) )
should be changed to
if( ( x >= 'a' ) && ( x <= 'f' ) )