*** empty log message ***

This commit is contained in:
cvs
2000-03-31 11:27:32 +00:00
parent 2555c83d4a
commit 7566bddd2d

View File

@ -206,7 +206,11 @@
assert(pMe);
*iCode = pMe->iLastError;
str_ncpy(error, pMe->lastError, iErrLen);
if (pMe->lastError==NULL) {
str_ncpy(error, "undefined error", iErrLen);
} else {
str_ncpy(error, pMe->lastError, iErrLen);
}
return 1;
}
/*---------------------------------------------------------------------------*/