From 43035f34f79a026f361f4855d8d1a6777d35f079 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Thu, 17 Sep 2020 12:14:45 -0400 Subject: [PATCH] e_module: Increase 'body' buffer size Increase size of body text to eliminate compiler warnings about truncated strings --- src/bin/e_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_module.c b/src/bin/e_module.c index af5cf1f15..06d9c3b4d 100644 --- a/src/bin/e_module.c +++ b/src/bin/e_module.c @@ -181,7 +181,7 @@ e_module_new(const char *name) { E_Module *m; char buf[PATH_MAX]; - char body[4096], title[1024]; + char body[PATH_MAX + 256], title[1024]; const char *modpath = NULL; char *s; int in_list = 0;