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

Debug CI crash 25/n [skip ci]

This commit is contained in:
Rene Rivera
2022-04-16 20:58:49 -05:00
parent e32393ea73
commit bc30f4ce00

View File

@@ -297,9 +297,12 @@ struct _stack
// err_flush();
while ( cleanups_size > 0 )
{
--cleanups_size;
cleanups[cleanups_size].function(
cleanups[cleanups_size].stack, cleanups[cleanups_size].count );
cleanups_size -= 1;
auto v = cleanups[cleanups_size];
auto f = v.function;
auto s = v.stack;
auto c = v.count;
f( s, c );
}
// err_printf( "STACK: %d, ITEMS: %d\n", (char*)end - (char*)get_data(), cleanups.size() );
// err_flush();