mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
Bug 744297 - initialize return value in nsXULPrototypeElement::Deserialize. r=bz
This commit is contained in:
parent
6f8a4be587
commit
6acb272d26
@ -2686,11 +2686,10 @@ nsXULPrototypeElement::Deserialize(nsIObjectInputStream* aStream,
|
||||
const nsCOMArray<nsINodeInfo> *aNodeInfos)
|
||||
{
|
||||
NS_PRECONDITION(aNodeInfos, "missing nodeinfo array");
|
||||
nsresult rv;
|
||||
|
||||
// Read Node Info
|
||||
PRUint32 number;
|
||||
rv |= aStream->Read32(&number);
|
||||
nsresult rv = aStream->Read32(&number);
|
||||
mNodeInfo = aNodeInfos->SafeObjectAt(number);
|
||||
if (!mNodeInfo)
|
||||
return NS_ERROR_UNEXPECTED;
|
||||
|
Loading…
x
Reference in New Issue
Block a user