Fix matrix pointer dereference bug in update.c
[alexxy/gromacs.git] / src / gromacs / mdlib / update.c
index e5a095baace0f339528a1f6cf3ccc8e77373cc0b..787135f7158cd12b23bac96a7446d7de8d8e44a7 100644 (file)
@@ -1318,7 +1318,7 @@ static void deform(gmx_update_t upd,
         x[i][YY] = mu[YY][YY]*x[i][YY]+mu[ZZ][YY]*x[i][ZZ];
         x[i][ZZ] = mu[ZZ][ZZ]*x[i][ZZ];
     }
-    if (*scale_tot)
+    if (scale_tot != NULL)
     {
         /* The transposes of the scaling matrices are stored,
          * so we need to do matrix multiplication in the inverse order.