From 2555efa9194c9ae6fb30970fba864c991d600130 Mon Sep 17 00:00:00 2001 From: Yurii Hordiienko <45203053+hordi@users.noreply.github.com> Date: Tue, 15 Nov 2022 17:49:45 -0500 Subject: [PATCH] Update tinyxml2.h do we really need that implicit memset call in line 378? --- tinyxml2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.h b/tinyxml2.h index cfb1053..749f5d5 100755 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -375,7 +375,7 @@ public: virtual void* Alloc() { if ( !_root ) { // Need a new block. - Block* block = new Block(); + Block* block = new Block; _blockPtrs.Push( block ); Item* blockItems = block->items;