about summary refs log tree commit diff
path: root/daemon.h
diff options
context:
space:
mode:
Diffstat (limited to 'daemon.h')
-rw-r--r--daemon.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/daemon.h b/daemon.h
index e86e43a..fb58088 100644
--- a/daemon.h
+++ b/daemon.h
@@ -38,7 +38,9 @@ static inline void prependClear(void) {
 static inline int prependAdd(const char *command) {
 	if (prepend.len == prepend.cap) {
 		size_t cap = (prepend.cap ? prepend.cap * 2 : 8);
-		void *ptr = realloc(prepend.commands, sizeof(*prepend.commands) * cap);
+		void *ptr = reallocarray(
+			prepend.commands, cap, sizeof(*prepend.commands)
+		);
 		if (!ptr) return -1;
 		prepend.cap = cap;
 		prepend.commands = ptr;