X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e10c8cc37c59200273c80d6db4aa93672feb45b6..a88936907b1c292cc7f1a966cdc958446d9a54ed:/src/xbt/dict_multi.c diff --git a/src/xbt/dict_multi.c b/src/xbt/dict_multi.c index e1fd5ef723..896d4b8d3a 100644 --- a/src/xbt/dict_multi.c +++ b/src/xbt/dict_multi.c @@ -2,11 +2,10 @@ /* dict_multi - dictionnaries of dictionnaries of ... of data */ -/* Authors: Martin Quinson */ -/* Copyright (C) 2003,2004 Martin Quinson. */ +/* Copyright (c) 2003, 2004 Martin Quinson. 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 "gras_private.h" @@ -95,9 +94,9 @@ gras_multidict_set(gras_dictelm_t **pp_head, } TRYCLEAN(gras_multidict_set_ext(pp_head, keycount, key, key_len, data, free_ctn), - free(key_len)); + gras_free(key_len)); - free(key_len); + gras_free(key_len); return errcode; } @@ -182,8 +181,8 @@ gras_multidict_get(gras_dictelm_t *p_head, } TRYCLEAN(gras_multidict_get_ext(p_head, keycount, key, key_len, data), - free(key_len)); - free(key_len); + gras_free(key_len)); + gras_free(key_len); return errcode; } @@ -241,8 +240,8 @@ gras_multidict_remove(gras_dictelm_t *p_head, } TRYCLEAN(gras_multidict_remove_ext(p_head, keycount, key, key_len), - free(key_len)); - free(key_len); + gras_free(key_len)); + gras_free(key_len); return errcode; }