in Abort: don't check args for empty string
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@107 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
parent
a781bf6557
commit
fa40e9e92f
@ -212,7 +212,7 @@ Abort (char *format,...)
|
|||||||
va_start (ap, format);
|
va_start (ap, format);
|
||||||
|
|
||||||
PrologMode &= ~AbortMode;
|
PrologMode &= ~AbortMode;
|
||||||
if (format)
|
if (format || !strcmp(format,""))
|
||||||
{
|
{
|
||||||
char ch;
|
char ch;
|
||||||
while ((ch = *format++)!=0)
|
while ((ch = *format++)!=0)
|
||||||
|
Reference in New Issue
Block a user