X-Git-Url: https://git.tokkee.org/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_info.c;fp=src%2Frrd_info.c;h=5722025384cd1fed366b92434d074124cc4ca237;hp=2f6c07fff78c1806323807084d9e181e9afb337a;hb=07c12ec4a3094cedd00628d33ca077338c60e96b;hpb=2a5dc89618904fdcbc2bd4db19ab3ce1be8fcd7c diff --git a/src/rrd_info.c b/src/rrd_info.c index 2f6c07f..5722025 100644 --- a/src/rrd_info.c +++ b/src/rrd_info.c @@ -71,8 +71,7 @@ rrd_info_t next->value.u_int = value.u_int; break; case RD_I_STR: - next->value.u_str = (char*)malloc(sizeof(char) * (strlen(value.u_str) + 1)); - strcpy(next->value.u_str, value.u_str); + next->value.u_str = strdup(value.u_str); break; case RD_I_BLO: next->value.u_blo.size = value.u_blo.size;