lkml.org 
[lkml]   [2008]   [May]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2] unify sys_pipe implementation
On Sat, May 3, 2008 at 8:01 PM, Ulrich Drepper <drepper@redhat.com> wrote:
[...]
> /*
> + * sys_pipe() is the normal C calling standard for creating
> + * a pipe. It's not the way Unix traditionally does this, though.
> + */
> +asmlinkage long sys_pipe(int __user *fildes)
> +{
> + int fd[2];
> + int error;
> +
> + error = do_pipe(fd);
> + if (!error) {
> + if (copy_to_user(fildes, fd, sizeof(fd)))
> + error = -EFAULT;
> + }
> + return error;
> +}
> +
[...]

I realize this code is old, but wouldn't file descriptors leak if
copy_to_user fails?

BR,
dm.n9107


\
 
 \ /
  Last update: 2008-05-05 10:33    [W:0.045 / U:0.708 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site