From 68c203249ccc6445c3dd8d5b391faa383c1e3da4 Mon Sep 17 00:00:00 2001 From: rgrjr Date: Mon, 4 Feb 2008 03:16:52 +0000 Subject: [PATCH] * compilers/imcc/cfg.c: + (edge_count): Fix a segfault in "-d 4" debugging output. git-svn-id: https://svn.perl.org/parrot/trunk@25486 d31e2699-5ff4-0310-a27c-f18f2fbe73fe --- compilers/imcc/cfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compilers/imcc/cfg.c b/compilers/imcc/cfg.c index 3b7f4cf540..d5118093d2 100644 --- a/compilers/imcc/cfg.c +++ b/compilers/imcc/cfg.c @@ -667,7 +667,7 @@ edge_count(ARGIN(const struct _IMC_Unit *unit)) while (e) { i++; - e = e->next++; + e = e->next; } return i; } -- 2.11.4.GIT