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;