From 1e7ff7f0fe9edb225c0e88390242a35cdddc5b01 Mon Sep 17 00:00:00 2001 From: Tim Prins Date: Mon, 9 Apr 2007 17:54:11 +0000 Subject: [PATCH] Fix another buglet. This commit was SVN r14270. --- orte/class/orte_value_array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/class/orte_value_array.h b/orte/class/orte_value_array.h index f8625dfe20..cb800c9d8e 100644 --- a/orte/class/orte_value_array.h +++ b/orte/class/orte_value_array.h @@ -91,7 +91,7 @@ static inline int orte_value_array_reserve(orte_value_array_t* array, orte_std_c array->array_alloc_size = 0; return ORTE_ERR_OUT_OF_RESOURCE; } - array->array_alloc_size = 1; + array->array_alloc_size = size; } return ORTE_SUCCESS; }