X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Futils_cmd_putval.c;h=98b5043f33d1a94156fa509404a840af76dc69bb;hb=e88e5b49dd3cc026d162b64ca100415481756169;hp=ec0c09ae0cfc662a8be35e537e8298fcfbfbf2d0;hpb=ebbe15f56430838df4397150f6c3089d5851216d;p=collectd.git diff --git a/src/utils_cmd_putval.c b/src/utils_cmd_putval.c index ec0c09ae..98b5043f 100644 --- a/src/utils_cmd_putval.c +++ b/src/utils_cmd_putval.c @@ -121,6 +121,8 @@ int handle_putval (FILE *fh, char **fields, int fields_num) int status; int i; + char *identifier_copy; + const data_set_t *ds; value_list_t vl = VALUE_LIST_INIT; @@ -135,7 +137,11 @@ int handle_putval (FILE *fh, char **fields, int fields_num) return (-1); } - status = parse_identifier (fields[1], &hostname, + /* parse_identifier() modifies its first argument, + * returning pointers into it */ + identifier_copy = sstrdup (fields[1]); + + status = parse_identifier (identifier_copy, &hostname, &plugin, &plugin_instance, &type, &type_instance); if (status != 0) @@ -143,6 +149,7 @@ int handle_putval (FILE *fh, char **fields, int fields_num) DEBUG ("cmd putval: Cannot parse `%s'", fields[1]); fprintf (fh, "-1 Cannot parse identifier.\n"); fflush (fh); + sfree (identifier_copy); return (-1); } @@ -154,6 +161,8 @@ int handle_putval (FILE *fh, char **fields, int fields_num) && (strlen (type_instance) >= sizeof (vl.type_instance)))) { fprintf (fh, "-1 Identifier too long.\n"); + fflush (fh); + sfree (identifier_copy); return (-1); } @@ -165,14 +174,18 @@ int handle_putval (FILE *fh, char **fields, int fields_num) strcpy (vl.type_instance, type_instance); ds = plugin_get_ds (type); - if (ds == NULL) + if (ds == NULL) { + sfree (identifier_copy); return (-1); + } vl.values_len = ds->ds_num; vl.values = (value_t *) malloc (vl.values_len * sizeof (value_t)); if (vl.values == NULL) { fprintf (fh, "-1 malloc failed.\n"); + fflush (fh); + sfree (identifier_copy); return (-1); } @@ -211,6 +224,7 @@ int handle_putval (FILE *fh, char **fields, int fields_num) fflush (fh); sfree (vl.values); + sfree (identifier_copy); return (0); } /* int handle_putval */