From 658b8f53df5e13711632a36741e7c2b7a46ae8aa Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 19 Feb 2007 07:58:05 +0000 Subject: More (v)snprintf-related buffer over-allocations removed Also took out an unnecessary memset in getPlayerErrorStr git-svn-id: https://svn.musicpd.org/mpd/trunk@5396 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/myfprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/myfprintf.c') diff --git a/src/myfprintf.c b/src/myfprintf.c index dac58ab34..4676c7193 100644 --- a/src/myfprintf.c +++ b/src/myfprintf.c @@ -50,7 +50,7 @@ static void blockingWrite(const int fd, const char *string, size_t len) void vfdprintf(const int fd, const char *fmt, va_list args) { - static char buffer[BUFFER_LENGTH + 1]; + static char buffer[BUFFER_LENGTH]; char *buf = buffer; size_t len; -- cgit v1.2.3