From afda47bf2d884a9dd1cac3f95ee93977c84f2f84 Mon Sep 17 00:00:00 2001
From: kronbichler <kronbichler@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Tue, 25 Feb 2014 10:11:59 +0000
Subject: [PATCH] Fix bug

git-svn-id: https://svn.dealii.org/trunk@32551 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/include/deal.II/matrix_free/operators.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deal.II/include/deal.II/matrix_free/operators.h b/deal.II/include/deal.II/matrix_free/operators.h
index 7e6821e344..ac5670f928 100644
--- a/deal.II/include/deal.II/matrix_free/operators.h
+++ b/deal.II/include/deal.II/matrix_free/operators.h
@@ -179,7 +179,7 @@ namespace MatrixFreeOperators
       inverse_coefficients.size() > dofs_per_cell ? dofs_per_cell : 0;
     const VectorizedArray<Number> *inv_coefficient = &inverse_coefficients[0];
     VectorizedArray<Number> temp_data_field[dofs_per_cell];
-    for (unsigned int d=0; d<n_components; ++d)
+    for (unsigned int d=0; d<n_actual_components; ++d)
       {
         const VectorizedArray<Number>* in = in_array+d*dofs_per_cell;
         VectorizedArray<Number>* out = out_array+d*dofs_per_cell;
-- 
2.39.5