[Nasm-bugs] [Bug 3392416] New: WORDS_LITTEENDIAN typo in md5c.c

no-reply at bugzilla-nasm.gorcunov.org no-reply at bugzilla-nasm.gorcunov.org
Sat Jun 24 03:00:44 PDT 2017


https://bugzilla.nasm.us/show_bug.cgi?id=3392416

            Bug ID: 3392416
           Summary: WORDS_LITTEENDIAN typo in md5c.c
           Product: NASM
           Version: 2.13.xx
          Hardware: All
                OS: All
            Status: OPEN
          Severity: normal
          Priority: Medium
         Component: Assembler
          Assignee: nobody at nasm.us
          Reporter: sezeroz at gmail.com
                CC: gorcunov at gmail.com, hpa at zytor.com, nasm-bugs at nasm.us
     Obtained from: Built from git using configure

The same fix in saa.c by commit df1eec0 needs applying to md5c.c:

diff --git a/nasmlib/md5c.c b/nasmlib/md5c.c
index 5d580f0..9b06136 100644
--- a/nasmlib/md5c.c
+++ b/nasmlib/md5c.c
@@ -18,7 +18,7 @@
 #include "md5.h"
 #include <string.h>             /* for memcpy() */

-#ifdef WORDS_LITTEENDIAN
+#ifdef WORDS_LITTLEENDIAN
 #define byteReverse(buf, len)  /* Nothing */
 #else
 static void byteReverse(unsigned char *buf, unsigned longs);

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.


More information about the Nasm-bugs mailing list