Chromium Code Reviews
DescriptionFix for failing unit tests PasswordStoreDefaultTest.*
There seems to a bug in STLport for Android because of which
copying a vector into a set using
expectations(first.begin(), first.end()) causes a crash.
If we instead use
std::copy(first.begin(), first.end(), std::inserter(expectations,
expectations.begin()));
there is no crash.
BUG=144161
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=154214
Patch Set 1 #Patch Set 2 : Change only the method we copy the vector into a set #
Total comments: 2
Patch Set 3 : Adding comment to explain the change #
Messages
Total messages: 7 (0 generated)
|
||||||||||||||||||||||||||||