pathIndexMapEqual

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2025-09-16 15:16:05 -07:00
parent a296abc15c
commit 8580cfd813
1 changed files with 1 additions and 4 deletions

View File

@ -343,10 +343,7 @@ pathIndexMapEqual(const PathIndexMap *path_index_map1,
size_t path_index2;
bool exists2;
path_index_map2->findKey(tag1, tag2, path_index2, exists2);
if (!exists2
// ArrivalMap equal function is TagMatchEqual, so make sure
// the tag is an exact match.
|| tag2 != tag1)
if (!exists2)
return false;
}
return true;