Timeline: Avoid uninitialized read when drawing waveforms.

pull/3/head
Jonathan Moore Liles 2012-06-10 11:46:36 -07:00
parent e219e6766e
commit 989b6f0e4b
1 changed files with 7 additions and 7 deletions

View File

@ -99,17 +99,17 @@ Waveform::draw ( int X, int Y, int W, int H,
fl_color( color );
fl_begin_complex_polygon();
j = start;
for ( int x = X; x < X + W; x++, j += skip )
for ( int x = X; x <= X + W; x++, j += skip )
fl_vertex( x, ty - ( halfheight * pbuf[ j ].min ) );
// j = start + ( W * skip );
j -= skip;
for ( int x = X + W; x >= X; x--, j -= skip )
fl_vertex( x, ty - ( halfheight * pbuf[ j ].max ) );
fl_end_complex_polygon();
}
}