From 81090f01f17719f7c01072e2fea8d41062a3015e Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 4 Jun 2010 20:59:33 +0000 Subject: [PATCH] fix warning --- rts/sm/Storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/sm/Storage.c b/rts/sm/Storage.c index 2e43bff..c9422e6 100644 --- a/rts/sm/Storage.c +++ b/rts/sm/Storage.c @@ -331,7 +331,7 @@ newDynCAF (StgRegTable *reg STG_UNUSED, StgClosure *caf) static bdescr * allocNursery (bdescr *tail, nat blocks) { - bdescr *bd; + bdescr *bd = NULL; nat i, n; // We allocate the nursery as a single contiguous block and then -- 1.7.10.4