MD5Stream.st
changeset 15992 24d68f700fdf
parent 15988 c096b155b704
child 15997 46cd77ec80df
--- a/MD5Stream.st	Wed Feb 12 13:55:30 2014 +0100
+++ b/MD5Stream.st	Wed Feb 12 15:14:07 2014 +0100
@@ -361,6 +361,7 @@
                 case SWORDARRAY:
                 case SLONGARRAY:
                 case FLOATARRAY:
+                    break;
                 case DOUBLEARRAY:
 #ifdef __NEED_DOUBLE_ALIGN
                     nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
@@ -371,6 +372,7 @@
 #ifdef __NEED_LONGLONG_ALIGN
                     nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
 #endif
+                    break;
                 default:
                     goto bad;
             }
@@ -393,11 +395,11 @@
 !MD5Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/MD5Stream.st,v 1.27 2014-02-12 12:54:43 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/MD5Stream.st,v 1.28 2014-02-12 14:14:07 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/MD5Stream.st,v 1.27 2014-02-12 12:54:43 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/MD5Stream.st,v 1.28 2014-02-12 14:14:07 stefan Exp $'
 ! !