2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Be sure to use object_equal.

[SVN r77727]
This commit is contained in:
Steven Watanabe
2012-04-02 22:27:28 +00:00
parent 9345ea38fa
commit 32640ce526

View File

@@ -428,7 +428,7 @@ LIST * hcache( TARGET * t, int rec, regexp * re[], LIST * hdrscan )
iter2 = list_begin( l2 ), end2 = list_end( l2 );
while ( iter1 != end1 && iter2 != end2 )
{
if ( list_item( iter1 ) != list_item( iter2 ) )
if ( !object_equal( list_item( iter1 ), list_item( iter2 ) ) )
{
iter1 = end1;
}