From: mquinson Date: Fri, 26 Oct 2007 21:16:52 +0000 (+0000) Subject: Yeah, that was a bit agressive against leaks... X-Git-Tag: v3.3~909 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1fccedd82c75d10afbde45a5204708a09a4b5ac8?ds=inline Yeah, that was a bit agressive against leaks... git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4893 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- 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;