tg3: tg3_disable_ints using uninitialized mailbox value to disable interrupts
[cascardo/linux.git] / fs / file.c
index ab3eb6a..ee738ea 100644 (file)
--- a/fs/file.c
+++ b/fs/file.c
@@ -869,7 +869,7 @@ SYSCALL_DEFINE1(dup, unsigned int, fildes)
        struct file *file = fget_raw(fildes);
 
        if (file) {
-               ret = get_unused_fd();
+               ret = get_unused_fd_flags(0);
                if (ret >= 0)
                        fd_install(ret, file);
                else