summaryrefslogtreecommitdiff
path: root/tls.c
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 /tls.c
parent031d6a3d88c714cd11884e73248f0c24090d50e1 (diff)
downloadcoupserv-c58679ab1055fc48e31ebc661d38f470bdec3142.tar.gz
coupserv-c58679ab1055fc48e31ebc661d38f470bdec3142.zip
Fix a potential issue
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c2
1 files changed, 1 insertions, 1 deletions
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"));