X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fmemory.c;h=c1564c86caf1840465ef5cecc14487d2e63a5eee;hb=10075e6fe3c384b73c2dd398a1435f8d10e56654;hp=b56fc5a3f784cae4fd02dcb19ab283f895b30fc4;hpb=089d33f1f455da115ca0c87160df8dbd49286377;p=collectd.git diff --git a/src/memory.c b/src/memory.c index b56fc5a3..c1564c86 100644 --- a/src/memory.c +++ b/src/memory.c @@ -109,9 +109,9 @@ static void memory_submit (const char *type_instance, gauge_t value) vl.values = values; vl.values_len = 1; vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "memory"); - strcpy (vl.type, "memory"); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "memory", sizeof (vl.plugin)); + sstrncpy (vl.type, "memory", sizeof (vl.type)); sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); plugin_dispatch_values (&vl);