summaryrefslogtreecommitdiff
path: root/pico/composer.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-10-18 18:25:57 -0600
committerEduardo Chappa <chappa@washington.edu>2020-10-18 18:25:57 -0600
commit721a587c7965e284b8a281d2286a2a436b5b8424 (patch)
tree0bf4992f0d2ea93c31abec7b2768018c28f707c7 /pico/composer.c
parent3165f59b344fb4d56d161541f294754d56bcb372 (diff)
downloadalpine-721a587c7965e284b8a281d2286a2a436b5b8424.tar.xz
* Fixes to warnings given by gcc 10.
Diffstat (limited to 'pico/composer.c')
-rw-r--r--pico/composer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pico/composer.c b/pico/composer.c
index a20314b5..dcce3b79 100644
--- a/pico/composer.c
+++ b/pico/composer.c
@@ -3665,7 +3665,7 @@ call_builder(struct headerentry *entry, int *mangled, char **err)
sbuflen += (6*term.t_ncol);
line = line->next;
}
-
+ sbuflen++;
if((sbuf=(char *)malloc(sbuflen * sizeof(*sbuf))) == NULL){
emlwrite("Can't malloc space to expand address", NULL);
return(-1);