From: Tilman Sauerbeck Date: Wed, 27 Dec 2017 15:13:46 +0000 (+0100) Subject: Remove multiplication from second argument to Memory_safeMalloc(). X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;h=06ded078a1693fb2620b3f1b4eab83e6fbfc37b5;hp=06ded078a1693fb2620b3f1b4eab83e6fbfc37b5;p=umurmur.git Remove multiplication from second argument to Memory_safeMalloc(). In Msg_banList_create(), transform Memory_safeMalloc(1, sizeof(foo) * many) to Memory_safeMalloc(many, sizeof(foo)) to actually make use of Memory_safeMalloc()'s overflow detection. ---