SV: msi: fix incorrect decoding of msi stream-names

2012-07-15 Thread Oleg Jakobsen
Til: wine-devel@winehq.org; Oleg Jakobsen Emne: Re: msi: fix incorrect decoding of msi stream-names On Wed, 2012-07-11 at 15:03 +, Oleg Jakobsen wrote: > @@ -203,6 +203,7 @@ BOOL decode_streamname(LPCWSTR in, LPWSTR out) > *out++ = mime2utf(ch&0x3f); >

Re: msi: fix incorrect decoding of msi stream-names

2012-07-12 Thread Hans Leidekker
On Wed, 2012-07-11 at 15:03 +, Oleg Jakobsen wrote: > @@ -203,6 +203,7 @@ BOOL decode_streamname(LPCWSTR in, LPWSTR out) > *out++ = mime2utf(ch&0x3f); > count++; > ch = mime2utf((ch>>6)&0x3f); > + continue; >

Re: msi: fix incorrect decoding of msi stream-names

2012-07-11 Thread Nikolay Sivov
On 7/11/2012 18:03, Oleg Jakobsen wrote: Looked at how you decode msi-stream names, and spotted a minor error whith the decoding. regards Oleg Why do you think it's an error? Looks like in this case it decodes one input WCHAR to two output WCHARs in a single pass.