You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The labels_to_str function dereferences labels.end() - 1 where labels is a vector. If labels is an empty vector than *(label.end() - 1) is undefined behavior (I think).
The text was updated successfully, but these errors were encountered:
The
labels_to_str
function dereferenceslabels.end() - 1
wherelabels
is a vector. Iflabels
is an empty vector than*(label.end() - 1)
is undefined behavior (I think).The text was updated successfully, but these errors were encountered: