commit | 6a625a627536388912380adbf88084ba8dd4f115 | [log] [tgz] |
---|---|---|
author | Eric Salo <salo@google.com> | Fri Sep 23 12:49:51 2022 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Fri Sep 23 12:50:27 2022 -0700 |
tree | ab943500d8e03827f5b8a5e1eb7958f81bcc53b2 | |
parent | e76dc4ac8a7b5a23edd8a13a816a01ac61b45bb7 [diff] [blame] |
make msan happy with the arena code Clear a field that we were missing in one of the constructor paths PiperOrigin-RevId: 476440650
diff --git a/upb/arena.c b/upb/arena.c index 319698a..2043470 100644 --- a/upb/arena.c +++ b/upb/arena.c
@@ -186,6 +186,7 @@ a->head.ptr = mem; a->head.end = UPB_PTR_AT(mem, n - sizeof(*a), char); a->freelist = NULL; + a->freelist_tail = NULL; a->cleanup_metadata = upb_cleanup_metadata(NULL, true); return a;