X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_info.c;h=5722025384cd1fed366b92434d074124cc4ca237;hb=0a01aa9bbe9e95237c639e56099707b1422acbc8;hp=2f6c07fff78c1806323807084d9e181e9afb337a;hpb=bb124879717bdb65640cd50ce99e3569cb0a9a3f;p=rrdtool.git 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;