Backout taras's check-in for bug 398435 to help find Tp regression.

This commit is contained in:
2007-10-16 17:31:01 -07:00
parent d83cb65017
commit 96a3ab5691
13 changed files with 30 additions and 30 deletions

View File

@@ -213,7 +213,7 @@ nsScriptableInputStream::ReadBoolean(PRBool* aBoolean)
{
PRUint8 byteResult;
nsresult rv = Read8(&byteResult);
*aBoolean = !!byteResult;
*aBoolean = byteResult;
return rv;
}