https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196714

            Bug ID: 196714
           Summary: fcntl() broken for 32bit binaries
           Product: Base System
           Version: 10.1-STABLE
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: kern
          Assignee: [email protected]
          Reporter: [email protected]

There is a missing typecast in freebsd32_fcntl() that shows up upon use of the
(old) lock primitives.
Here is the patch:

--- freebsd32_misc.c    (revision 276910)
+++ freebsd32_misc.c    (working copy)
@@ -3135,6 +3135,9 @@
     case F_SETLKW:
     case F_SETLK:
     case F_GETLK:
+    case F_OSETLKW:
+    case F_OSETLK:
+    case F_OGETLK:
     case F_SETFD:
     case F_SETFL:
         tmp = (unsigned int)(uap->arg);

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to