1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r8466: it is not portable to assert() a va_list (it breaks on alpha for example)

This commit is contained in:
Andrew Tridgell 2005-07-14 13:17:14 +00:00 committed by Gerald (Jerry) Carter
parent aa9491c0cb
commit 2a64ee4227

View File

@ -477,7 +477,6 @@ static void ejsErrorCore(Ejs* ep, const char *fmt, va_list args)
char *errbuf, *msgbuf;
mprAssert(ep);
mprAssert(args);
msgbuf = NULL;
mprAllocVsprintf(&msgbuf, MPR_MAX_STRING, fmt, args);