From b65011dad080848e52b2077ac2e8030b8cb19f91 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 12 Jul 2019 17:09:09 +0200 Subject: [PATCH] alloc-util: drop _alloc_ decorator from memdup_suffix0() Fixes: https://github.com/systemd/systemd/pull/13034#issuecomment-510801671 --- src/basic/alloc-util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/alloc-util.h b/src/basic/alloc-util.h index cffc737d03a..64d9e00315e 100644 --- a/src/basic/alloc-util.h +++ b/src/basic/alloc-util.h @@ -58,7 +58,7 @@ static inline void *mfree(void *memory) { }) void* memdup(const void *p, size_t l) _alloc_(2); -void* memdup_suffix0(const void *p, size_t l) _alloc_(2); +void* memdup_suffix0(const void *p, size_t l); /* We can't use _alloc_() here, since we return a buffer one byte larger than the specified size */ #define memdupa(p, l) \ ({ \ -- 2.47.3