Bug 790354 - Remove unused variable 'ch' in nsBasicUTF7Decoder::ConvertNoBuff r=smontagu

This commit is contained in:
Andrew Quartey 2012-09-12 12:43:18 -04:00
parent 7fcdacaf95
commit 1530e94234

View File

@ -166,10 +166,8 @@ NS_IMETHODIMP nsBasicUTF7Decoder::ConvertNoBuff(const char * aSrc,
PRUnichar * dest = aDest;
int32_t bcr,bcw;
nsresult res = NS_OK;
char ch;
while (src < srcEnd) {
ch = *src;
// fist, attept to decode in the current mode
bcr = srcEnd - src;