diff options
author | Gregory Sanders <gsanders87@gmail.com> | 2017-07-10 11:44:39 -0400 |
---|---|---|
committer | Gregory Sanders <gsanders87@gmail.com> | 2017-07-17 08:53:18 -0400 |
commit | 4dc1915bceacb94446454428da676772290b8c48 (patch) | |
tree | 10fa6d12a08414ccb2011f14f188574fcc14a789 /src/rpc/net.cpp | |
parent | 999ef2073aa2b4aebfbe9bea6f9b12da52b8b2cb (diff) |
check for null values in rpc args and handle appropriately
Diffstat (limited to 'src/rpc/net.cpp')
-rw-r--r-- | src/rpc/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index ed452fcb02..fde0b27a33 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -310,7 +310,7 @@ UniValue getaddednodeinfo(const JSONRPCRequest& request) std::vector<AddedNodeInfo> vInfo = g_connman->GetAddedNodeInfo(); - if (request.params.size() == 1) { + if (request.params.size() == 1 && !request.params[0].isNull()) { bool found = false; for (const AddedNodeInfo& info : vInfo) { if (info.strAddedNode == request.params[0].get_str()) { |