1
0
Fork 0

(svn r11810) -Fix (r11802): reset sets when leaving prematurely

release/0.6
smatz 2008-01-10 22:46:04 +00:00
parent a1266da782
commit e5d33482b4
1 changed files with 4 additions and 1 deletions

View File

@ -530,7 +530,10 @@ static bool UpdateSignalsInBuffer()
}
/* do not do anything when some buffer was full */
if (flags & SF_FULL) break;
if (flags & SF_FULL) {
ResetSets(); // free all sets
break;
}
UpdateSignalsAroundSegment(flags);
}