[thin_delta] Fix bug when comparing the mappings
This commit is contained in:
parent
0d510924d5
commit
7c2b3fb671
@ -432,7 +432,8 @@ namespace local {
|
||||
mapping left_mapping;
|
||||
mapping right_mapping;
|
||||
|
||||
while (left_it != left.end() && right_it != right.end()) {
|
||||
while ((left_mapping.len_ || left_it != left.end()) &&
|
||||
(right_mapping.len_ || right_it != right.end())) {
|
||||
if (!left_mapping.len_ && left_it != left.end())
|
||||
left_mapping = *left_it++;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user