X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a8cd62135619ad52e05ae1c929ef07e166e4260..c27e14849074c829c180ddd750c1b7bf0b91d31b:/src/instr/instr_paje_values.c diff --git a/src/instr/instr_paje_values.c b/src/instr/instr_paje_values.c index b6f1e60d14..a2e5748c63 100644 --- a/src/instr/instr_paje_values.c +++ b/src/instr/instr_paje_values.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2012. The SimGrid Team. +/* Copyright (c) 2012-2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -32,15 +32,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)