diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-05-20 19:04:43 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-05-20 19:04:43 +0200 |
commit | dbe9a179e3ea356c8c21b95c650d3b7f3de8055f (patch) | |
tree | 8f9c0dd1af65da5c99a4cb809c931da609b17585 /src | |
parent | 032f2940aa63d82a2249400bdfc8c611154370c1 (diff) | |
download | ghdl-dbe9a179e3ea356c8c21b95c650d3b7f3de8055f.tar.gz ghdl-dbe9a179e3ea356c8c21b95c650d3b7f3de8055f.tar.bz2 ghdl-dbe9a179e3ea356c8c21b95c650d3b7f3de8055f.zip |
ghwlib: fix non-initialized field for ghw_disp_hie.
Diffstat (limited to 'src')
-rw-r--r-- | src/grt/ghwlib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/grt/ghwlib.c b/src/grt/ghwlib.c index 482cc3386..218f8cb2c 100644 --- a/src/grt/ghwlib.c +++ b/src/grt/ghwlib.c @@ -1090,6 +1090,7 @@ ghw_read_hie (struct ghw_handler *h) /* Should not be here. */ abort (); case ghw_hie_process: + el->u.blk.child = NULL; break; case ghw_hie_block: case ghw_hie_generate_if: |