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

git-svn-id: svn://10.0.0.236/trunk@237840 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
reed%reedloden.com
2007-10-17 00:31:02 +00:00
parent ba4f3036e4
commit d55534a83d
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;
}