Commit fe529537 authored by Sjur Brændeland's avatar Sjur Brændeland Committed by Rusty Russell

virtio_console: Free buffer if splice fails

Free the allocated scatter list if send_pages fails in function
port_splice_write.
Signed-off-by: default avatarSjur Brændeland <sjur.brandeland@stericsson.com>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent de929b04
......@@ -881,6 +881,8 @@ static ssize_t port_fops_splice_write(struct pipe_inode_info *pipe,
if (likely(ret > 0))
ret = send_pages(port, sgl.sg, sgl.n, sgl.len, true);
if (unlikely(ret <= 0))
kfree(sgl.sg);
return ret;
}
......
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