lkml.org 
[lkml]   [2008]   [Sep]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [RFC v4][PATCH 9/9] File descriprtors (restore)
From
Date
On Tue, 2008-09-09 at 03:42 -0400, Oren Laadan wrote:
>
> +static int cr_close_all_fds(struct files_struct *files)
> +{
> + int *fdtable;
> + int n;
> +
> + do {
> + n = cr_scan_fds(files, &fdtable);
> + if (n < 0)
> + return n;
> + while (n--)
> + sys_close(fdtable[n]);
> + kfree(fdtable);
> + } while (n != -1);
> +
> + return 0;
> +}

This needs to use an ERR_PTR(). It will save using the double-pointer.

-- Dave



\
 
 \ /
  Last update: 2008-09-09 19:53    [W:0.209 / U:1.012 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site