devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=43035f34f79a026f361f4855d8d1a6777d35f079

commit 43035f34f79a026f361f4855d8d1a6777d35f079
Author: Christopher Michael <devilho...@comcast.net>
Date:   Thu Sep 17 12:14:45 2020 -0400

    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;

-- 


Reply via email to