X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a63c83a55c527e6e95c92cf2ef65ae575902387e..782885a2fe13a0a0fd7fb26eda8a0b7b4b08ae89:/src/xbt/xbt_matrix.c diff --git a/src/xbt/xbt_matrix.c b/src/xbt/xbt_matrix.c index 0238b479c7..5dfb955a2b 100644 --- a/src/xbt/xbt_matrix.c +++ b/src/xbt/xbt_matrix.c @@ -132,7 +132,7 @@ void xbt_matrix_copy_values(xbt_matrix_t dst, xbt_matrix_t src, xbt_matrix_t xbt_matrix_double_new_zeros(int lines, int rows) { xbt_matrix_t res = xbt_matrix_new(lines, rows,sizeof(double),NULL); - memset(res->data,0,sizeof(res->data)); + memset(res->data,0, res->elmsize * res->lines * res->rows); return res; }