From 4ae38ebfb077263cc24d63e84707322af39d0b0b Mon Sep 17 00:00:00 2001 From: Ben Reynwar Date: Tue, 19 May 2020 22:35:27 -0700 Subject: ghwdump should handle zero-length signals (#1327) * Adding a test for issue #1326 to check that ghwdump doesn't crash with a zero-length signal. * Remove an assertion from ghwlib that prevents zero-length signals. --- src/grt/ghwlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/grt/ghwlib.c b/src/grt/ghwlib.c index 0e3a07568..8d1fd8ddf 100644 --- a/src/grt/ghwlib.c +++ b/src/grt/ghwlib.c @@ -1313,7 +1313,7 @@ ghw_disp_hie (struct ghw_handler *h, struct ghw_hie *top) ghw_disp_subtype_indication (h, hie->u.sig.type); printf (":"); k = 0; - assert (sigs[0] != GHW_NO_SIG); + while (1) { /* First signal of the range. */ -- cgit v1.2.3