Bug 543497, Patch A: Fix "warning: suggest parentheses around comparison in operand of &" in nsBinHexDecoder.cpp. r=jduell

This commit is contained in:
Daniel Holbert 2010-02-02 13:56:45 -08:00
Родитель 8b2f9b062c
Коммит 1035788e91
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -204,7 +204,7 @@ nsresult nsBinHexDecoder::ProcessNextState(nsIRequest * aRequest, nsISupports *
// c & 63 returns the length of mName. So if we need the length, that's how
// you can figure it out....
mName.SetLength(c & 63);
if (mName.Length() != c & 63) {
if (mName.Length() != (c & 63)) {
/* XXX ProcessNextState/ProcessNextChunk aren't rv checked */
mState = BINHEX_STATE_DONE;
}