Skip to content

Commit 87eb62b

Browse files
committed
Fixed new/free mismatch and uninit memory usage
1 parent 1a819c6 commit 87eb62b

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

src/common/Platform_mac.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static inline char *createUserAgent()
4242
{
4343
const size_t max = 160;
4444

45-
char *buf = new char[max];
45+
char *buf = static_cast<char *>(malloc(max));
4646

4747
# ifdef XMRIG_NVIDIA_PROJECT
4848
const int cudaVersion = cuda_get_runtime_version();

src/common/Platform_unix.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ static inline char *createUserAgent()
5656
{
5757
const size_t max = 160;
5858

59-
char *buf = new char[max];
59+
char *buf = static_cast<char *>(malloc(max));
6060
int length = snprintf(buf, max, "%s/%s (Linux ", APP_NAME, APP_VERSION);
6161

6262
# if defined(__x86_64__)

src/common/Platform_win.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static inline char *createUserAgent()
6060
const auto osver = winOsVersion();
6161
const size_t max = 160;
6262

63-
char *buf = new char[max];
63+
char *buf = static_cast<char *>(malloc(max));
6464
int length = snprintf(buf, max, "%s/%s (Windows NT %lu.%lu", APP_NAME, APP_VERSION, osver.dwMajorVersion, osver.dwMinorVersion);
6565

6666
# if defined(__x86_64__) || defined(_M_AMD64)

src/common/net/Pool.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Pool::Pool(const char *host, uint16_t port, const char *user, const char *passwo
9797
const size_t size = m_host.size() + 8;
9898
assert(size > 8);
9999

100-
char *url = new char[size]();
100+
char *url = static_cast<char *>(malloc(size));
101101
snprintf(url, size - 1, "%s:%d", m_host.data(), m_port);
102102

103103
m_url = url;
@@ -171,8 +171,9 @@ bool Pool::parse(const char *url)
171171
}
172172

173173
const size_t size = port++ - base + 1;
174-
char *host = new char[size]();
174+
char *host = static_cast<char *>(malloc(size));
175175
memcpy(host, base, size - 1);
176+
host[size - 1] = 0;
176177

177178
m_host = host;
178179
m_port = static_cast<uint16_t>(strtol(port, nullptr, 10));
@@ -188,7 +189,7 @@ bool Pool::setUserpass(const char *userpass)
188189
return false;
189190
}
190191

191-
char *user = new char[p - userpass + 1]();
192+
char *user = static_cast<char *>(malloc(p - userpass + 1));
192193
strncpy(user, userpass, p - userpass);
193194

194195
m_user = user;
@@ -279,7 +280,7 @@ bool Pool::parseIPv6(const char *addr)
279280
}
280281

281282
const size_t size = end - addr;
282-
char *host = new char[size]();
283+
char *host = static_cast<char *>(malloc(size));
283284
memcpy(host, addr + 1, size - 1);
284285

285286
m_host = host;

0 commit comments

Comments
 (0)