Skip to content
Snippets Groups Projects
Commit d456bd42 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

contrib: ccan/json possible uninitialized use

parent cfbc9042
Branches
Tags
No related merge requests found
......@@ -793,7 +793,7 @@ failure:
bool parse_string(const char **sp, char **out)
{
const char *s = *sp;
SB sb;
SB sb = { NULL, NULL, NULL };
char throwaway_buffer[4];
/* enough space for a UTF-8 character */
char *b;
......
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