Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
take care of new dll import and dll export in Windows
[simgrid.git] / src / xbt / xbt_matrix.c
index 0238b47..5dfb955 100644 (file)
@@ -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;
 }