Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make sure we don't went out of the string to handle *before* using it (thx valgrind)
[simgrid.git] / src / xbt / dict_multi.c
index 90ff8bf..2ee799c 100644 (file)
@@ -100,7 +100,7 @@ xbt_multidict_set(xbt_dict_t  mdict,
   TRY {
     xbt_multidict_set_ext(mdict, keys, lens, data, free_ctn);
   } CLEANUP {
-    xbt_dynar_free(&lens);         
+    xbt_dynar_free(&lens);
   } CATCH(e) {
     RETHROW;
   }