In init_record the udf field is no longer set to false if inp

is a constant link and recGblInitConstantLink returns success
(rval, not val, was successfully initialized).
This commit is contained in:
Janet B. Anderson
1996-10-30 17:45:15 +00:00
parent e301e1b359
commit 884737e82e
4 changed files with 0 additions and 4 deletions

View File

@@ -83,7 +83,6 @@ static long init_record(pai)
switch (pai->inp.type) {
case (CONSTANT) :
recGblInitConstantLink(&pai->inp,DBF_LONG,&pai->rval);
pai->udf = FALSE;
break;
case (PV_LINK) :
case (DB_LINK) :

View File

@@ -80,7 +80,6 @@ static long init_record(pbi)
switch (pbi->inp.type) {
case (CONSTANT) :
recGblInitConstantLink(&pbi->inp,DBF_ULONG,&pbi->rval);
pbi->udf = FALSE;
break;
case (DB_LINK) :
case (PV_LINK) :

View File

@@ -76,7 +76,6 @@ static long init_record(pmbbi)
switch (pmbbi->inp.type) {
case (CONSTANT) :
recGblInitConstantLink(&pmbbi->inp,DBF_ULONG,&pmbbi->rval);
pmbbi->udf = FALSE;
break;
case (DB_LINK) :
case (PV_LINK) :

View File

@@ -78,7 +78,6 @@ static long init_record(pmbbi)
if (pmbbi->inp.type == CONSTANT) {
recGblInitConstantLink(&pmbbi->inp,DBF_ULONG,&pmbbi->rval);
pmbbi->udf = FALSE;
}
return(0);
}