Browse Source

Fix null pointer in IsTrusted()

try
Cozz Lovan 11 years ago
parent
commit
ba51c7da40
  1. 4
      src/wallet.h

4
src/wallet.h

@ -675,8 +675,10 @@ public:
{
// Transactions not sent by us: not trusted
const CWalletTx* parent = pwallet->GetWalletTx(txin.prevout.hash);
if (parent == NULL)
return false;
const CTxOut& parentOut = parent->vout[txin.prevout.n];
if (parent == NULL || !pwallet->IsMine(parentOut))
if (!pwallet->IsMine(parentOut))
return false;
}
return true;

Loading…
Cancel
Save