summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2023-08-10 01:52:38 -0400
committerTest_User <hax@andrewyu.org>2023-08-10 01:52:57 -0400
commitc58679ab1055fc48e31ebc661d38f470bdec3142 (patch)
tree4c865b7bdce1eee5e2f9c8ea9395f8b4c5aa95bf
parent031d6a3d88c714cd11884e73248f0c24090d50e1 (diff)
downloadcoupserv-c58679ab1055fc48e31ebc661d38f470bdec3142.tar.gz
coupserv-c58679ab1055fc48e31ebc661d38f470bdec3142.zip
Fix a potential issue
-rw-r--r--client_network.c2
-rw-r--r--tls.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/client_network.c b/client_network.c
index fe03eba..37e3e8a 100644
--- a/client_network.c
+++ b/client_network.c
@@ -536,7 +536,7 @@ int initclientnetwork(void) {
#if LOGALL
ssize_t SENDCLIENT(struct string msg) {
- if (!msg.len)
+ if (msg.len == 0)
return 0;
static char printprefix = 1;
diff --git a/tls.c b/tls.c
index a3f3200..167f530 100644
--- a/tls.c
+++ b/tls.c
@@ -106,7 +106,7 @@ ssize_t SEND(struct string msg) {
WRITES(1, msg);
- if (msg.data[msg.len - 1] == '\n') {
+ if (msg.len == 0 || msg.data[msg.len - 1] == '\n') {
printprefix = 1;
#if COLORIZE
WRITES(1, STRING("\x1b[0m\n"));