[PATCH 2/2] syntax-check: Prohibit the non-clearing 'g_new'

Peter Krempa via Devel posted 2 patches 2 weeks, 6 days ago
[PATCH 2/2] syntax-check: Prohibit the non-clearing 'g_new'
Posted by Peter Krempa via Devel 2 weeks, 6 days ago
From: Peter Krempa <pkrempa@redhat.com>

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
---
 build-aux/syntax-check.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-aux/syntax-check.mk b/build-aux/syntax-check.mk
index 4ba059b56b..4deaa70368 100644
--- a/build-aux/syntax-check.mk
+++ b/build-aux/syntax-check.mk
@@ -92,7 +92,7 @@ sc_prohibit_raw_virclassnew:

 # Avoid raw malloc and free, except in documentation comments.
 sc_prohibit_raw_allocation:
-	@prohibit='^.[^*].*\<((m|c|re)alloc|free|g_malloc) *\([^)]' \
+	@prohibit='^.[^*].*\<((m|c|re)alloc|free|g_malloc|g_new) *\([^)]' \
 	halt='use g_new0/g_malloc0/g_free instead of malloc/free/g_malloc' \
 	  $(_sc_search_regexp)

-- 
2.51.0