Fix for what appears to be a typo (seq_prev is always NULL) - found while

reviewing the latest Clang reports
This commit is contained in:
Joshua Leung 2013-01-02 00:15:37 +00:00
parent 5e0e62f040
commit 4ab2fed9bb

@ -4268,8 +4268,8 @@ static void freeSeqData(TransInfo *t)
{
int overlap = 0;
seq_prev = NULL;
for (a = 0; a < t->total; a++, td++) {
seq_prev = NULL;
seq = ((TransDataSeq *)td->extra)->seq;
if ((seq != seq_prev) && (seq->depth == 0) && (seq->flag & SEQ_OVERLAP)) {
overlap = 1;