From 14975c4165fc5ce9497b8d4867b890ea7f7721a9 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Thu, 4 Dec 2014 22:08:28 -0500 Subject: [PATCH] gcc thinks it can see how 'entry' can be accessed uninitialized. --- dist/Data-Dumper/Dumper.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/Data-Dumper/Dumper.xs b/dist/Data-Dumper/Dumper.xs index 2ffa867..372c073 100644 --- a/dist/Data-Dumper/Dumper.xs +++ b/dist/Data-Dumper/Dumper.xs @@ -798,7 +798,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv, else if (realtype == SVt_PVHV) { SV *totpad, *newapad; SV *sname; - HE *entry; + HE *entry = NULL; char *key; I32 klen; SV *hval; -- 1.8.3.1