server: Set the fd user when duplicating a mapping file descriptor into a new file.

This commit is contained in:
Alexandre Julliard 2011-04-22 17:07:45 +02:00
parent 33c491eb84
commit f2b34dddfb
1 changed files with 1 additions and 0 deletions

View File

@ -162,6 +162,7 @@ struct file *create_file_for_fd_obj( struct fd *fd, unsigned int access, unsigne
release_object( file );
return NULL;
}
set_fd_user( file->fd, &file_fd_ops, &file->obj );
}
return file;
}