From: Tyrel D. <ty...@us...> - 2010-11-15 23:36:25
|
Update of /cvsroot/sblim/gather/util In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10929/util Modified Files: mlog.c Log Message: Fixed 3109840: mlog with arguments segfaults on M_SHOW Index: mlog.c =================================================================== RCS file: /cvsroot/sblim/gather/util/mlog.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mlog.c 20 May 2009 19:39:56 -0000 1.3 +++ mlog.c 15 Nov 2010 23:36:17 -0000 1.4 @@ -55,7 +55,7 @@ syslog(priosysl,buf); if (errout) { - vfprintf(stderr,fmt,ap); + vfprintf(stderr,buf); } va_end(ap); } |