This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 4cbd7179b246d90177a87493d5f9e9af981c043d
Author: Kim Woelders <[email protected]>
AuthorDate: Fri Dec 9 21:02:33 2022 +0100
memory.c: Consistently use EMALLOC()
---
src/memory.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/memory.c b/src/memory.c
index 08567abe..ce4d6dfc 100644
--- a/src/memory.c
+++ b/src/memory.c
@@ -288,7 +288,7 @@ _StrlistDecodeArgParse(const char *str, int len)
char *buf, *p;
int i, ch, ch_last, delim;
- buf = Emalloc(len + 1);
+ buf = EMALLOC(char, len + 1);
p = buf;
ch_last = '\0';
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.