Modified EFbuild.c to stop generating an error message when an

"equiv" statement is encountered in a .ext file when using the
"ext2spice short" option.
This commit is contained in:
Tim Edwards 2021-09-20 15:02:57 -04:00
parent 0bb6ac1fa9
commit c101d98921
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
8.3.209
8.3.210

View File

@ -499,9 +499,11 @@ efBuildEquiv(def, nodeName1, nodeName2)
sdev = DEV_VOLT;
for (i = 0; i < 10; i++) argv[i] = zeroarg;
argv[0] = StrDup((char **)NULL, "0.0");
argv[4] = StrDup((char **)NULL, nodeName1);
argv[7] = StrDup((char **)NULL, nodeName2);
efBuildDevice(def, sdev, "None", &GeoNullRect, 10, argv);
freeMagic(argv[0]);
freeMagic(argv[4]);
freeMagic(argv[7]);
return;