Corrected check on cd_client in CalmaRdcl; if not set for holding
GDS plane data, it is initialized to CLIENTDEFAULT, not NULL.
This commit is contained in:
parent
aa4bb4b19c
commit
c360fb9d5a
|
|
@ -903,7 +903,8 @@ calmaElementSref(filename)
|
|||
|
||||
for (pNum = 0; pNum < MAXCIFRLAYERS; pNum++)
|
||||
{
|
||||
if (gdsplanes[pNum] != NULL)
|
||||
if ((def->cd_client != (ClientData)CLIENTDEFAULT) &&
|
||||
(gdsplanes[pNum] != NULL))
|
||||
{
|
||||
gdsCopyRec.plane = cifCurReadPlanes[pNum];
|
||||
if (isArray)
|
||||
|
|
|
|||
Loading…
Reference in New Issue