mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix some issues found by cppcheck.
This commit is contained in:
parent
72407a9cfb
commit
f851c4aa33
163 changed files with 776 additions and 767 deletions
|
@ -35,11 +35,11 @@
|
|||
#include "core/io/stream_peer_ssl.h"
|
||||
|
||||
int PacketPeerMbedDTLS::bio_send(void *ctx, const unsigned char *buf, size_t len) {
|
||||
if (buf == nullptr || len <= 0) {
|
||||
if (buf == nullptr || len == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
PacketPeerMbedDTLS *sp = (PacketPeerMbedDTLS *)ctx;
|
||||
PacketPeerMbedDTLS *sp = static_cast<PacketPeerMbedDTLS *>(ctx);
|
||||
|
||||
ERR_FAIL_COND_V(sp == nullptr, 0);
|
||||
|
||||
|
@ -53,11 +53,11 @@ int PacketPeerMbedDTLS::bio_send(void *ctx, const unsigned char *buf, size_t len
|
|||
}
|
||||
|
||||
int PacketPeerMbedDTLS::bio_recv(void *ctx, unsigned char *buf, size_t len) {
|
||||
if (buf == nullptr || len <= 0) {
|
||||
if (buf == nullptr || len == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
PacketPeerMbedDTLS *sp = (PacketPeerMbedDTLS *)ctx;
|
||||
PacketPeerMbedDTLS *sp = static_cast<PacketPeerMbedDTLS *>(ctx);
|
||||
|
||||
ERR_FAIL_COND_V(sp == nullptr, 0);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue