X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/696369a34c85f78ffaa5aba69fde1e5446e5d8cb..917aef7fa18957ea33a3cd78ab61b5837b5e1663:/src/instr/instr_paje_values.c diff --git a/src/instr/instr_paje_values.c b/src/instr/instr_paje_values.c index b6f1e60d14..8e81a9ffe1 100644 --- a/src/instr/instr_paje_values.c +++ b/src/instr/instr_paje_values.c @@ -1,8 +1,9 @@ -/* Copyright (c) 2012. The SimGrid Team. +/* Copyright (c) 2012-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ + #include "instr/instr_private.h" #ifdef HAVE_TRACING @@ -32,15 +33,16 @@ val_t PJ_value_new (const char *name, const char *color, type_t father) val_t PJ_value_get_or_new (const char *name, const char *color, type_t father) { + val_t ret = 0; xbt_ex_t e; TRY { - return PJ_value_get(name, father); + ret = PJ_value_get(name, father); } CATCH(e) { xbt_ex_free(e); - return PJ_value_new(name, color, father); + ret = PJ_value_new(name, color, father); } - THROW_IMPOSSIBLE; + return ret; } val_t PJ_value_get (const char *name, type_t father)