This commit is contained in:
jl777
2019-02-06 01:05:04 -11:00
parent 20b1d0df88
commit f515c4b9ac
2 changed files with 51 additions and 21 deletions

View File

@@ -472,7 +472,7 @@ cJSON *cclib_reparse(int32_t *nump,cJSON *origparams) // assumes origparams will
}
newstr[j] = 0;
params = cJSON_Parse(newstr);
if ( params != 0 )
if ( 0 && params != 0 )
printf("new.(%s) -> %s\n",newstr,jprint(params,0));
free(newstr);
*nump = cJSON_GetArraySize(params);