dont print if the format is NULL

This commit is contained in:
Jeff Hill
1995-08-12 01:04:11 +00:00
parent ca13bfdff9
commit f232999d32
+4
View File
@@ -257,6 +257,10 @@ LOCAL int vmprintf (const char *pFormat, va_list pvar)
int s0;
int s1;
if (!pFormat) {
return 0;
}
s0 = vfprintf(stdout,pFormat,pvar);
fflush(stdout);
s1 = vfprintf(iocLogFile,pFormat,pvar);