Corrected an error that makes the "drc listall why" command segfault.

This commit is contained in:
Tim Edwards 2020-11-10 10:52:32 -05:00
parent 904a60423e
commit d2fc99c433
1 changed files with 2 additions and 2 deletions

View File

@ -637,9 +637,9 @@ drcWhyAllFunc(scx, cdarg)
/* Check paint and interactions in this subcell. */
(void) DRCInteractionCheck(def, &scx->scx_area, &scx->scx_area,
drcListallError, (Plane *)NULL, (ClientData)scx);
drcListallError, (ClientData)scx);
(void) DRCArrayCheck(def, &scx->scx_area,
drcListallError, (Plane *)NULL, (ClientData)scx);
drcListallError, (ClientData)scx);
/* New behavior: Don't search children, instead propagate errors up. */
/* (void) DBCellSrArea(scx, drcWhyAllFunc, (ClientData)cdarg); */