Commit 6d1ec38a authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am e8a2ca27: am 3b79d03b: Merge "stlport: Fix boundary condition in stlport for __get_integer."

* commit 'e8a2ca27':
  stlport: Fix boundary condition in stlport for __get_integer.
parents 532fb7de e8a2ca27
......@@ -155,6 +155,9 @@ __get_integer(_InputIter& __first, _InputIter& __last,
}
}
if ((__result == (numeric_limits<_Integer>::min)()) && !__is_negative)
__ovflow = true;
if (__is_group && __group_sizes_end != __group_sizes) {
*__group_sizes_end++ = __current_group_size;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment