From 778a245464d8b91ae4e567da2757fe5a523df4bf Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 10 Sep 2017 02:44:38 +0000 Subject: Release 10.79.05 git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@3055 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/ipdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'converter/other/ipdb.c') diff --git a/converter/other/ipdb.c b/converter/other/ipdb.c index 1d72cc31..882bf187 100644 --- a/converter/other/ipdb.c +++ b/converter/other/ipdb.c @@ -284,7 +284,7 @@ ipdb_image_alloc(const char * const name, MALLOCARRAY(imgP->data, w * h); if (imgP->data) { - MEMSZERO(imgP->data); + memset(imgP->data, 0, sizeof(*(imgP->data)) * w * h); } else failed = true; } -- cgit 1.4.1