From 71be8510e55c7254a64e1f73122d29a73187366c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 5 Sep 2011 20:51:10 +0900 Subject: [PATCH] Don't do anything when the message is empty. This clears up some fun valgrind noise in SV_Print. --- qw/source/sv_send.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qw/source/sv_send.c b/qw/source/sv_send.c index c47669093..ec7b0ed6f 100644 --- a/qw/source/sv_send.c +++ b/qw/source/sv_send.c @@ -178,6 +178,8 @@ SV_Print (const char *fmt, va_list args) in = premsg; out = msg; + if (!*premsg) + return; // expand FFnickFF to nick do { switch ((byte) *in) { @@ -213,7 +215,7 @@ SV_Print (const char *fmt, va_list args) if (sv_redirected) { // Add to redirected message dstring_appendstr (&outputbuf, (char *) msg); } - if (!con_printf_no_log) { + if (*msg && !con_printf_no_log) { // We want to output to console and maybe logfile if (sv_timestamps && sv_timefmt && sv_timefmt->string && sv_timestamps->int_val && !pending)