summaryrefslogtreecommitdiff
path: root/IvyProbe
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:11:04 +0000
committerfcolin2007-02-01 13:11:04 +0000
commit49e3b1e92ab32714523690991027b5bc0cbb18ef (patch)
tree6f56c5c89cb301d3d366346ac6191c6e242a761b /IvyProbe
parentec4b01a7990a0de789a40b846c62a679092e7409 (diff)
downloadivy-cplusplus-49e3b1e92ab32714523690991027b5bc0cbb18ef.zip
ivy-cplusplus-49e3b1e92ab32714523690991027b5bc0cbb18ef.tar.gz
ivy-cplusplus-49e3b1e92ab32714523690991027b5bc0cbb18ef.tar.bz2
ivy-cplusplus-49e3b1e92ab32714523690991027b5bc0cbb18ef.tar.xz
Utilisateur : Fcolin Date : 18/11/05 Heure : 11:46 Archivé dans $/Bus/IvyProbe Commentaire: (vss 20)
Diffstat (limited to 'IvyProbe')
-rw-r--r--IvyProbe/IvyProbeDlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/IvyProbe/IvyProbeDlg.cpp b/IvyProbe/IvyProbeDlg.cpp
index b29fd72..997ae6f 100644
--- a/IvyProbe/IvyProbeDlg.cpp
+++ b/IvyProbe/IvyProbeDlg.cpp
@@ -239,7 +239,7 @@ void CIvyProbeDlg::WriteMessage(const char *format, ...)
// format and write the data we were given
va_list args;
va_start(args, format);
- _vsnprintf(str, sizeof(str), format, args);
+ _vsnprintf_s(str, sizeof(str), sizeof(str)-1, format, args);
m_text.AppendString( str );
}