Avoid a segfault on getblock if it can't read a block from disk.
This commit is contained in:
parent
f3330b40a5
commit
954d2e7201
1 changed files with 3 additions and 1 deletions
|
@ -276,7 +276,9 @@ Value getblock(const Array& params, bool fHelp)
|
||||||
|
|
||||||
CBlock block;
|
CBlock block;
|
||||||
CBlockIndex* pblockindex = mapBlockIndex[hash];
|
CBlockIndex* pblockindex = mapBlockIndex[hash];
|
||||||
ReadBlockFromDisk(block, pblockindex);
|
|
||||||
|
if(!ReadBlockFromDisk(block, pblockindex))
|
||||||
|
throw JSONRPCError(RPC_INTERNAL_ERROR, "Can't read block from disk");
|
||||||
|
|
||||||
if (!fVerbose)
|
if (!fVerbose)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue