mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Potential LineChart crash fix
This commit is contained in:
parent
032ed8b1d0
commit
db0eb31b8f
@ -126,14 +126,12 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
bool square_plot,accel;
|
||||
|
||||
for (vector<Session *>::iterator s=m_day->begin(); s!=m_day->end(); s++) {
|
||||
if ((*s)->eventlist.find(m_code)==(*s)->eventlist.end()) continue;
|
||||
|
||||
vector<EventList *> & evec=(*s)->eventlist[m_code];
|
||||
if (evec.size()==0) continue; // not possible
|
||||
|
||||
num_points=0;
|
||||
for (unsigned i=0;i<evec.size();i++) num_points+=evec[i]->count();
|
||||
|
||||
if (!num_points) continue;
|
||||
|
||||
for (unsigned i=0;i<evec.size();i++)
|
||||
num_points+=evec[i]->count();
|
||||
total_points+=num_points;
|
||||
|
||||
for (unsigned n=0;n<evec.size();n++) { // for each segment
|
||||
|
Loading…
Reference in New Issue
Block a user