summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--text-utils/hexdump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/text-utils/hexdump.c b/text-utils/hexdump.c
index e9fca0294..d3d87dd57 100644
--- a/text-utils/hexdump.c
+++ b/text-utils/hexdump.c
@@ -50,6 +50,7 @@
#include "nls.h"
#include "c.h"
#include "strutils.h"
+#include "xalloc.h"
#include "closestream.h"
void hex_free(struct hexdump *);
@@ -167,7 +168,7 @@ int main(int argc, char **argv)
struct hexdump_fs *tfs;
char *c;
- struct hexdump *hex = malloc (sizeof (struct hexdump));
+ struct hexdump *hex = xcalloc(1, sizeof (struct hexdump));
hex->length = -1;
INIT_LIST_HEAD(&hex->fshead);