Index: source/i18n/currpinf.cpp |
diff --git a/source/i18n/currpinf.cpp b/source/i18n/currpinf.cpp |
index db81218c7dd9fd3167d6739ed4915eba13da09ea..9a0bb4b2b9efd64ee40f2742cd5ad49500170b66 100644 |
--- a/source/i18n/currpinf.cpp |
+++ b/source/i18n/currpinf.cpp |
@@ -1,6 +1,6 @@ |
/* |
******************************************************************************* |
- * Copyright (C) 2009-2011, International Business Machines Corporation and |
+ * Copyright (C) 2009-2014, International Business Machines Corporation and |
* others. All Rights Reserved. |
******************************************************************************* |
*/ |
@@ -338,7 +338,7 @@ CurrencyPluralInfo::deleteHash(Hashtable* hTable) |
if ( hTable == NULL ) { |
return; |
} |
- int32_t pos = -1; |
+ int32_t pos = UHASH_FIRST; |
const UHashElement* element = NULL; |
while ( (element = hTable->nextElement(pos)) != NULL ) { |
const UHashTok valueTok = element->value; |
@@ -376,7 +376,7 @@ CurrencyPluralInfo::copyHash(const Hashtable* source, |
if ( U_FAILURE(status) ) { |
return; |
} |
- int32_t pos = -1; |
+ int32_t pos = UHASH_FIRST; |
const UHashElement* element = NULL; |
if ( source ) { |
while ( (element = source->nextElement(pos)) != NULL ) { |