Fixed a wrong address reference which crashes Japanese mail send, r=ftang.

This commit is contained in:
nhotta%netscape.com 2000-02-04 22:39:03 +00:00
parent dff03d383f
commit 5a50b7eb39

View File

@ -104,7 +104,7 @@ void HankakuToZenkaku (
} }
// handle the last character // handle the last character
if(IS_HANKAKU(aSrc[i])) if(IS_HANKAKU(*aSrc))
*aDest = gBasicMapping[(*aSrc) - 0xff60]; *aDest = gBasicMapping[(*aSrc) - 0xff60];
else else
*aDest = *aSrc; *aDest = *aSrc;