Merge pull request #1852 from cohcho/fix_string
String: distinguish nullptr/empty str
This commit is contained in:
commit
8952f6892d
@ -33,7 +33,7 @@
|
||||
xmrig::String::String(const char *str) :
|
||||
m_size(str == nullptr ? 0 : strlen(str))
|
||||
{
|
||||
if (m_size == 0) {
|
||||
if (str == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user