Corrected an uninitialized variable error in the verilog reading code

that produces a segfault condition.
This commit is contained in:
Tim Edwards 2020-06-16 12:52:29 -04:00
parent 9bcca3ac21
commit cec6d89474
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
1.5.147
1.5.148

View File

@ -1786,7 +1786,7 @@ nextinst:
// Net is bit-sliced across array of instances.
if (wb.start > wb.end) {
char *bptr, *cptr = NULL, cchar, *netname;
char *bptr = NULL, *cptr = NULL, cchar, *netname;
unsigned char is_bundle = 0;
struct bus wbb;