mirror of
git://erdgeist.org/opentracker
synced 2025-01-14 08:50:10 +00:00
Do not always grow the vector, shrink the first iovec to 0 before filling the second one
This commit is contained in:
parent
50b5c750cc
commit
8e683affd1
@ -614,8 +614,8 @@ static void stats_make( int *iovec_entries, struct iovec **iovector, ot_tasktype
|
||||
case TASK_STATS_SLASH24S: r += stats_slash24s_txt( r, 128 ); break;
|
||||
case TASK_STATS_TOP10: r += stats_top_txt( r, 10 ); break;
|
||||
case TASK_STATS_TOP100:
|
||||
if( !( r = iovec_increase( iovec_entries, iovector, 4*OT_STATS_TMPSIZE ) ) )
|
||||
return;
|
||||
r = iovec_fix_increase_or_free( iovec_entries, iovector, r, 4 * OT_STATS_TMPSIZE );
|
||||
if( !r ) return;
|
||||
r += stats_top_txt( r, 100 ); break;
|
||||
case TASK_STATS_EVERYTHING: r += stats_return_everything( r ); break;
|
||||
#ifdef WANT_SPOT_WOODPECKER
|
||||
|
Loading…
Reference in New Issue
Block a user