Change in libosmocore[master]: bitvec: avoid redundant zero-initialization in bitvec_alloc()

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

fixeria gerrit-no-reply at lists.osmocom.org
Tue Feb 18 22:11:08 UTC 2020


fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/17218 )


Change subject: bitvec: avoid redundant zero-initialization in bitvec_alloc()
......................................................................

bitvec: avoid redundant zero-initialization in bitvec_alloc()

All the fields of the structure are set explicitly anyway.

Change-Id: I40c0322d5f2febd98bae6fbe0ec2132eda6fb35b
---
M src/bitvec.c
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/18/17218/1

diff --git a/src/bitvec.c b/src/bitvec.c
index 6202227..5dd0275 100644
--- a/src/bitvec.c
+++ b/src/bitvec.c
@@ -400,7 +400,7 @@
  *  \return pointer to allocated vector; NULL in case of error */
 struct bitvec *bitvec_alloc(unsigned int size, TALLOC_CTX *ctx)
 {
-	struct bitvec *bv = talloc_zero(ctx, struct bitvec);
+	struct bitvec *bv = talloc(ctx, struct bitvec);
 	if (!bv)
 		return NULL;
 

-- 
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/17218
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I40c0322d5f2febd98bae6fbe0ec2132eda6fb35b
Gerrit-Change-Number: 17218
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <axilirator at gmail.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200218/1f238519/attachment.htm>


More information about the gerrit-log mailing list