2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Fix an infinite loop caused by creating a cycle in the strongly connected component links.

[SVN r78282]
This commit is contained in:
Steven Watanabe
2012-04-30 18:11:35 +00:00
parent 656fffe626
commit 2ddd4f5f69

View File

@@ -1279,7 +1279,7 @@ static void make1findcycle_cleanup( TARGET * t )
static TARGET * make1findcycle( TARGET * t )
{
TARGET * result = make1findcycle_impl( t, t );
TARGET * result = make1findcycle_impl( t, target_scc( t ) );
make1findcycle_cleanup( t );
return result;
}