Fix possible uninitialized value access due to strerror_r error

This commit is contained in:
Eugene Bolotin 2013-05-07 18:26:05 +04:00
parent 94675ea8c8
commit 637f54b92c
1 changed files with 1 additions and 1 deletions

2
net.c
View File

@ -55,7 +55,7 @@
void __redisSetError(redisContext *c, int type, const char *str);
static void __redisSetErrorFromErrno(redisContext *c, int type, const char *prefix) {
char buf[128];
char buf[128] = { 0 };
size_t len = 0;
if (prefix != NULL)