summaryrefslogtreecommitdiff
path: root/scene/main
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2021-09-29 20:54:43 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2021-09-29 20:58:14 +0800
commit9dd0d3f550a0940dd53833666cd082e81aab8eff (patch)
tree8fc7a7d680e2f223a164c478c06685927309e592 /scene/main
parent4c1d2e935061a99884fffc6a84f8fbf279387691 (diff)
Don't memcpy to nullptr even if length is zero
Diffstat (limited to 'scene/main')
-rw-r--r--scene/main/http_request.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/scene/main/http_request.cpp b/scene/main/http_request.cpp
index f24d880045..14fd14dd18 100644
--- a/scene/main/http_request.cpp
+++ b/scene/main/http_request.cpp
@@ -104,9 +104,11 @@ Error HTTPRequest::request(const String &p_url, const Vector<String> &p_custom_h
CharString charstr = p_request_data.utf8();
size_t len = charstr.length();
- raw_data.resize(len);
- uint8_t *w = raw_data.ptrw();
- memcpy(w, charstr.ptr(), len);
+ if (len > 0) {
+ raw_data.resize(len);
+ uint8_t *w = raw_data.ptrw();
+ memcpy(w, charstr.ptr(), len);
+ }
return request_raw(p_url, p_custom_headers, p_ssl_validate_domain, p_method, raw_data);
}