Commit 0781db04 authored by Rémi Duraffort's avatar Rémi Duraffort

chorus: remove wrong (and uneeded) dealocations

parent 33f3158d
......@@ -394,9 +394,7 @@ static int reallocate_buffer( filter_t *p_filter, filter_sys_t *p_sys )
msg_Err( p_filter, "Couldnt reallocate buffer for new delay." );
return 0;
}
free( p_sys->p_delayLineStart );
p_sys->p_delayLineStart = temp;
p_sys->p_delayLineEnd = p_sys->p_delayLineStart + p_sys->i_bufferLength;
free( temp );
return 1;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment