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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user