summary refs log tree commit diff
path: root/local.c
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-11-20 01:10:10 -0800
committerJune McEnroe <june@causal.agency>2019-11-20 15:23:46 -0500
commitd6055480175938d9d8d968db326469833cff5bf3 (patch)
tree4748ef07aff9f263ace5e29054284dba5e4cd19e /local.c
parentclient: Include time.h for gmtime and strftime (diff)
downloadpounce-d6055480175938d9d8d968db326469833cff5bf3.tar.gz
pounce-d6055480175938d9d8d968db326469833cff5bf3.zip
Avoid a couple VLAs with constant size
These are really just regular arrays masquerading as VLAs.
Diffstat (limited to '')
-rw-r--r--local.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/local.c b/local.c
index 6ef452b..c147259 100644
--- a/local.c
+++ b/local.c
@@ -165,8 +165,7 @@ size_t localUnix(int fds[], size_t cap, const char *path) {
 }
 
 static int recvfd(int sock) {
-	size_t len = CMSG_SPACE(sizeof(int));
-	char buf[len];
+	char buf[CMSG_SPACE(sizeof(int))];
 
 	char x;
 	struct iovec iov = { .iov_base = &x, .iov_len = 1 };
@@ -174,7 +173,7 @@ static int recvfd(int sock) {
 		.msg_iov = &iov,
 		.msg_iovlen = 1,
 		.msg_control = buf,
-		.msg_controllen = len,
+		.msg_controllen = sizeof(buf),
 	};
 	if (0 > recvmsg(sock, &msg, 0)) return -1;