mzcom minor clean-up

This commit is contained in:
Matthew Flatt 2010-12-06 15:00:21 -07:00
parent a5c4863848
commit 2906a6d750

View File

@ -23,7 +23,7 @@ LPWSTR schemeUCS4ToUTF16 (const mzchar * buffer, int nchars, long * result_lengt
LPWSTR s;
intptr_t rl;
s = (LPWSTR) scheme_ucs4_to_utf16 (buffer, 0, nchars, NULL, 0, &rl, 1);
if(result_length) *result_length = rl;
*result_length = rl;
s[*result_length] = 0;
return s;
}