Fix uninitialized variable
This commit is contained in:
parent
0538bb4cda
commit
bdcae2e6e1
@ -45,7 +45,7 @@ static int jsoneq(const char *json, jsmntok_t *tok, const char *s) {
|
|||||||
|
|
||||||
static char *encapsulate_quote(char *in) {
|
static char *encapsulate_quote(char *in) {
|
||||||
char out[512];
|
char out[512];
|
||||||
int i;
|
int i = 0;
|
||||||
int j = 0;
|
int j = 0;
|
||||||
for (j=0;j<strlen(in);j++) {
|
for (j=0;j<strlen(in);j++) {
|
||||||
if (in[j] == '\"' || in[j] == '\\') {
|
if (in[j] == '\"' || in[j] == '\\') {
|
||||||
|
Reference in New Issue
Block a user