diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-29 15:58:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 15:58:25 +0200 |
commit | 5e609d0e8cecedc68d842fd9f1171d74c4584028 (patch) | |
tree | 1cb7a4a2cb77048952f1e37d42ec3f8fb3b69b7b | |
parent | c1f59139b40f40907b0507a84ec3515c5cc4794b (diff) | |
parent | 9dd0d3f550a0940dd53833666cd082e81aab8eff (diff) |
Merge pull request #53211 from timothyqiu/request-ub
-rw-r--r-- | scene/main/http_request.cpp | 8 | ||||
-rw-r--r-- | servers/physics_3d/soft_body_3d_sw.cpp | 6 |
2 files changed, 9 insertions, 5 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); } diff --git a/servers/physics_3d/soft_body_3d_sw.cpp b/servers/physics_3d/soft_body_3d_sw.cpp index 5f6e202c73..752d5f3a91 100644 --- a/servers/physics_3d/soft_body_3d_sw.cpp +++ b/servers/physics_3d/soft_body_3d_sw.cpp @@ -249,8 +249,10 @@ void SoftBody3DSW::update_area() { // Node area. LocalVector<int> counts; - counts.resize(nodes.size()); - memset(counts.ptr(), 0, counts.size() * sizeof(int)); + if (nodes.size() > 0) { + counts.resize(nodes.size()); + memset(counts.ptr(), 0, counts.size() * sizeof(int)); + } for (i = 0, ni = nodes.size(); i < ni; ++i) { nodes[i].area = 0.0; |