From 34c9386e218c8e981747412a7c4d1066d7e62f06 Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Thu, 31 Aug 2023 09:37:44 +0200 Subject: [PATCH] [gdb/symtab] Replace TYPE_ALLOC + memset with TYPE_ZALLOC I noticed a case of TYPE_ALLOC followed by memset. Replace this with TYPE_ZALLOC. Tested on x86_64-linux. Approved-By: Tom Tromey --- gdb/stabsread.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gdb/stabsread.c b/gdb/stabsread.c index ad9258a9f20..18fefd6929c 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -2693,9 +2693,7 @@ read_member_functions (struct stab_field_info *fip, const char **pp, { ALLOCATE_CPLUS_STRUCT_TYPE (type); TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *) - TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields); - memset (TYPE_FN_FIELDLISTS (type), 0, - sizeof (struct fn_fieldlist) * nfn_fields); + TYPE_ZALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields); TYPE_NFN_FIELDS (type) = nfn_fields; } -- 2.30.2