Commit 658b8f53 authored by Eric Wong's avatar Eric Wong

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
parent 772dc6bc
......@@ -68,7 +68,7 @@ static const char *log_date(void)
#define BUFFER_LENGTH 4096
static void buffer_warning(const char *fmt, va_list args)
{
char buffer[BUFFER_LENGTH + 1];
char buffer[BUFFER_LENGTH];
char *tmp = buffer;
size_t len = BUFFER_LENGTH;
......
......@@ -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;
......
......@@ -303,8 +303,8 @@ char *getPlayerErrorStr(void)
int errorlen = MAXPATHLEN + 1024;
PlayerControl *pc = &(getPlayerData()->playerControl);
error = xrealloc(error, errorlen + 1);
memset(error, 0, errorlen + 1);
error = xrealloc(error, errorlen);
error[0] = '\0';
switch (pc->error) {
case PLAYER_ERROR_FILENOTFOUND:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment