Revert "fixed the length calculation when a flush is processed."

This reverts commit 66cb5a7b5c.
This commit is contained in:
William Hubbs 2008-10-09 09:05:56 -05:00
commit d7e8dc2b34

View file

@ -169,7 +169,7 @@ void main_loop(struct synth_t *s)
queue_clear();
stop_speech();
memmove(buf, cp+1, strlen(cp + 1) + 1);
length = strlen(buf) + 1;
length = strlen(buf);
}
process_buffer(s, buf, length);
}