Commit d1673c1e authored by michael's avatar michael

Remove unused variable from slice_buffer_release() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18570 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2293539e
......@@ -542,13 +542,11 @@ static IDWTELEM * slice_buffer_load_line(slice_buffer * buf, int line)
static void slice_buffer_release(slice_buffer * buf, int line)
{
int offset;
IDWTELEM * buffer;
assert(line >= 0 && line < buf->line_count);
assert(buf->line[line]);
offset = buf->line_width * line;
buffer = buf->line[line];
buf->data_stack_top++;
buf->data_stack[buf->data_stack_top] = buffer;
......
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