summaryrefslogtreecommitdiff
path: root/gas/listing.c
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde@tbsaunde.org>2016-02-13 22:00:07 -0500
committerTrevor Saunders <tbsaunde+binutils@tbsaunde.org>2016-03-22 19:06:39 -0400
commit8860a416a2357aa66a03218c6076b95ef8052ccf (patch)
tree496266d5cf13fa6ddd41b8236141e2aca1eef7f1 /gas/listing.c
parent34b9f7292f9c75d09c169a293c1f021eb97517ca (diff)
downloadbinutils-gdb-8860a416a2357aa66a03218c6076b95ef8052ccf.tar.gz
replace some raw xmalloc / xrealloc with the XNEW* macros
This increases consistancy of how we allocate memory, and always casting the result to the proper type. It also helps make sure we get any use of sizeof on the result type correct. gas/ChangeLog: 2016-03-22 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * listing.c (listing_message): Use XNEW style allocation macros. * read.c (read_a_source_file): Likewise. (read_symbol_name): Likewise. (s_mri_common): Likewise. (assign_symbol): Likewise. (s_reloc): Likewise. (emit_expr_with_reloc): Likewise. (s_incbin): Likewise. (s_include): Likewise. * sb.c (sb_build): Likewise. (sb_check): Likewise.
Diffstat (limited to 'gas/listing.c')
-rw-r--r--gas/listing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/listing.c b/gas/listing.c
index 4b5fd34cf8c..53e84aba311 100644
--- a/gas/listing.c
+++ b/gas/listing.c
@@ -236,7 +236,7 @@ listing_message (const char *name, const char *message)
{
unsigned int l = strlen (name) + strlen (message) + 1;
char *n = (char *) xmalloc (l);
- struct list_message *lm = xmalloc (sizeof *lm);
+ struct list_message *lm = XNEW (struct list_message);
strcpy (n, name);
strcat (n, message);
lm->message = n;