https://bugzilla.mindrot.org/show_bug.cgi?id=3102

            Bug ID: 3102
           Summary: Compilation error in sshbuf-misc.c on IRIX 6.5 with
                    MIPSPro 7.4
           Product: Portable OpenSSH
           Version: 8.1p1
          Hardware: MIPS64
                OS: IRIX
            Status: NEW
          Severity: minor
          Priority: P5
         Component: Miscellaneous
          Assignee: [email protected]
          Reporter: [email protected]

cc-1515 c99: ERROR File = sshbuf-misc.c, Line = 225
  A value of type "int" cannot be assigned to an entity of type "void
*".

        if ((p = memmem(sshbuf_ptr(b) + start_offset,


This can be easily fixed by changing line 215 from

        void *p;

to 

        size_t p;

-- 
You are receiving this mail because:
You are watching the assignee of the bug.
_______________________________________________
openssh-bugs mailing list
[email protected]
https://lists.mindrot.org/mailman/listinfo/openssh-bugs

Reply via email to