You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Don't memcpy to nullptr even if length is zero
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user