You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Fix some issues found by cppcheck.
This commit is contained in:
@@ -34,11 +34,11 @@
|
||||
#include "core/io/stream_peer_tcp.h"
|
||||
|
||||
int StreamPeerMbedTLS::bio_send(void *ctx, const unsigned char *buf, size_t len) {
|
||||
if (buf == nullptr || len <= 0) {
|
||||
if (buf == nullptr || len == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
StreamPeerMbedTLS *sp = (StreamPeerMbedTLS *)ctx;
|
||||
StreamPeerMbedTLS *sp = static_cast<StreamPeerMbedTLS *>(ctx);
|
||||
|
||||
ERR_FAIL_COND_V(sp == nullptr, 0);
|
||||
|
||||
@@ -54,11 +54,11 @@ int StreamPeerMbedTLS::bio_send(void *ctx, const unsigned char *buf, size_t len)
|
||||
}
|
||||
|
||||
int StreamPeerMbedTLS::bio_recv(void *ctx, unsigned char *buf, size_t len) {
|
||||
if (buf == nullptr || len <= 0) {
|
||||
if (buf == nullptr || len == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
StreamPeerMbedTLS *sp = (StreamPeerMbedTLS *)ctx;
|
||||
StreamPeerMbedTLS *sp = static_cast<StreamPeerMbedTLS *>(ctx);
|
||||
|
||||
ERR_FAIL_COND_V(sp == nullptr, 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user