mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-09-09 12:52:04 +00:00
fix segfault in dhtget when ses is NULL (http://pastebin.com/rcJQm48W)
This commit is contained in:
parent
23cb6fbdb6
commit
6b01734ccf
@ -1138,6 +1138,9 @@ Value dhtput(const Array& params, bool fHelp)
|
||||
"dhtput <username> <resource> <s(ingle)/m(ulti)> <value> <sig_user> <seq>\n"
|
||||
"Store resource in dht network");
|
||||
|
||||
if( !ses )
|
||||
return Value();
|
||||
|
||||
EnsureWalletIsUnlocked();
|
||||
|
||||
string strUsername = params[0].get_str();
|
||||
@ -1181,6 +1184,9 @@ Value dhtget(const Array& params, bool fHelp)
|
||||
"dhtget <username> <resource> <s(ingle)/m(ulti)>\n"
|
||||
"Get resource from dht network");
|
||||
|
||||
if( !ses )
|
||||
return Array();
|
||||
|
||||
string strUsername = params[0].get_str();
|
||||
string strResource = params[1].get_str();
|
||||
string strMulti = params[2].get_str();
|
||||
|
Loading…
x
Reference in New Issue
Block a user