X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/83759160753ea6ca3fbc362cb618e6940ba3061d..1fccedd82c75d10afbde45a5204708a09a4b5ac8:/src/surf/cpu.c diff --git a/src/surf/cpu.c b/src/surf/cpu.c index 1f010285c1..eb6ca0520d 100644 --- a/src/surf/cpu.c +++ b/src/surf/cpu.c @@ -31,7 +31,7 @@ static cpu_Cas01_t cpu_new(char *name, double power_scale, cpu_Cas01_t cpu = xbt_new0(s_cpu_Cas01_t, 1); cpu->model = (surf_model_t) surf_cpu_model; - cpu->name = name; + cpu->name = xbt_strdup(name); cpu->power_scale = power_scale; xbt_assert0(cpu->power_scale > 0, "Power has to be >0"); cpu->power_current = power_initial;