mirror of
https://github.com/xmrig/xmrig.git
synced 2024-12-23 12:09:22 +00:00
Merge pull request #1852 from cohcho/fix_string
String: distinguish nullptr/empty str
This commit is contained in:
commit
8952f6892d
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue