From b1d9a197c185ccc3b0f67ee55713f16cdebad461 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 12:56:14 +0000 Subject: Utilisateur : Fcolin Date : 1/06/05 Heure : 16:45 Archivé dans $/Bus/Ivy Commentaire: (vss 19) --- Ivy/Ivy.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Ivy/Ivy.cxx') diff --git a/Ivy/Ivy.cxx b/Ivy/Ivy.cxx index e7505d1..7cd8dde 100644 --- a/Ivy/Ivy.cxx +++ b/Ivy/Ivy.cxx @@ -2,7 +2,7 @@ // ////////////////////////////////////////////////////////////////////// -#include "stdafx.h" +#include "IvyStdAfx.h" #include "Ivy.h" @@ -148,7 +148,7 @@ int Ivy::BindMsg( IvyMessageCallback *cb, const char *regexp, ... ) va_list args; va_start( args, regexp ); /* Initialize variable arguments. */ - vsprintf( buffer, regexp, args ); + _vsnprintf( buffer, sizeof(buffer), regexp, args ); va_end( args); regexp_out.push_back( regexp ); @@ -243,7 +243,7 @@ int Ivy::SendMsg(const char * message, ... ) va_list args; va_start( args, message ); /* Initialize variable arguments. */ - vsprintf( buffer, message, args ); + _vsnprintf( buffer, sizeof(buffer), message, args ); va_end( args); /* send to already connected */ IvyApplicationList::iterator iter; -- cgit v1.1