fix segfault in dhtget when ses is NULL (http://pastebin.com/rcJQm48W)

This commit is contained in:
Miguel Freitas 2014-01-09 14:48:42 -02:00
parent 23cb6fbdb6
commit 6b01734ccf

View File

@ -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();