]> git.donarmstrong.com Git - lilypond.git/commitdiff
Get rid of one more invalid memory access
authorReinhold Kainhofer <reinhold@kainhofer.com>
Tue, 23 Aug 2011 19:11:57 +0000 (21:11 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Tue, 23 Aug 2011 19:11:57 +0000 (21:11 +0200)
lily/tie-performer.cc

index c53ddeac7b359a24e26656f150c5237f3e3c3410..85a0b07d747467cb3e1e76b6184b0adb9b9963a4 100644 (file)
@@ -110,8 +110,7 @@ Tie_performer::acknowledge_audio_element (Audio_element_info inf)
               // (*it).moment_ already stores the end of the tied note!
               Moment skip = now_mom () - (*it).end_moment_;
               an->tie_to (th, skip);
-              // this invalidates the iterator, we are leaving the loop anyway
-              heads_to_tie_.erase (it);
+              it = heads_to_tie_.erase (it);
             }
         }
     }