From c917233165b7af7934d82ac4eb6242f26dce1397 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 22 Dec 2003 23:40:20 +0000 Subject: [PATCH] make sure outputbuf's mem gets initialized (oops:) --- qw/source/sv_send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/sv_send.c b/qw/source/sv_send.c index 36b8f7b7a..9cd1918df 100644 --- a/qw/source/sv_send.c +++ b/qw/source/sv_send.c @@ -63,7 +63,7 @@ static __attribute__ ((unused)) const char rcsid[] = /* SV_Printf redirection */ -dstring_t outputbuf; +dstring_t outputbuf = {&dstring_default_mem}; int con_printf_no_log; redirect_t sv_redirected;