Fix xallocx(..., MALLOCX_ZERO) bugs.

Zero all trailing bytes of large allocations when
--enable-cache-oblivious configure option is enabled.  This regression
was introduced by 8a03cf039cd06f9fa6972711195055d865673966 (Implement
cache index randomization for large allocations.).

Zero trailing bytes of huge allocations when resizing from/to a size
class that is not a multiple of the chunk size.
diff --git a/ChangeLog b/ChangeLog
index c6bd556..a9929f8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,10 @@
 * 4.0.3 (XXX)
 
   Bug fixes:
+  - Fix xallocx(..., MALLOCX_ZERO) to zero all trailing bytes of large
+    allocations when --enable-cache-oblivious configure option is enabled.
+  - Fix xallocx(..., MALLOCX_ZERO) to zero trailing bytes of huge allocations
+    when resizing from/to a size class that is not a multiple of the chunk size.
   - Fix prof_tctx_dump_iter() to filter out nodes that were created after heap
     profile dumping started.