[LTP] [PATCH 1/2] docparse: Replace \t with space
Petr Vorel
pvorel@suse.cz
Thu Jan 21 14:05:37 CET 2021
Hi,
...
> size_t size = sizeof(struct data_node_string) + strlen(string) + 1;
> struct data_node *node = malloc(size);
> + char *ix = node->string.val;
> if (!node)
> return NULL;
> @@ -61,6 +62,9 @@ static inline struct data_node *data_node_string(const char *string)
> node->type = DATA_STRING;
> strcpy(node->string.val, string);
Probably better to comment this:
/* tabs are not allowed in JSON */
> + while ((ix = strchr(ix, '\t')))
> + *ix++ = ' ';
Kind regards,
Petr
More information about the ltp
mailing list