X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7cb9b465d2d93d035190c9afd0916cf5d8b0d0bb..093b834960aa7457d220feacad9542c4606ed8a0:/src/instr/instr_paje_types.cpp diff --git a/src/instr/instr_paje_types.cpp b/src/instr/instr_paje_types.cpp index 389ff98d77..792fc4ce5e 100644 --- a/src/instr/instr_paje_types.cpp +++ b/src/instr/instr_paje_types.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2012, 2014-2015. The SimGrid Team. +/* Copyright (c) 2012, 2014-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -52,7 +52,7 @@ void PJ_type_free (type_t type) xbt_dict_cursor_t cursor = nullptr; xbt_dict_foreach (type->values, cursor, value_name, val) { XBT_DEBUG("free value %s, child of %s", val->name, val->father->name); - delete val; + xbt_free(val); } xbt_dict_free (&type->values); xbt_free (type->name); @@ -142,8 +142,8 @@ type_t PJ_type_variable_new (const char *name, const char *color, type_t father) type_t ret = nullptr; - char white[INSTR_DEFAULT_STR_SIZE] = "1 1 1"; if (not color) { + char white[INSTR_DEFAULT_STR_SIZE] = "1 1 1"; ret = newType (name, name, white, TYPE_VARIABLE, father); }else{ ret = newType (name, name, color, TYPE_VARIABLE, father);