Commit bcf83543 authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Merge pull request #164 from eugenebolotin/netc_fix_possible_uninitialized_access

Fix possible uninitialized value access due to strerror_r error
parents 94675ea8 637f54b9
......@@ -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)
......
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