# HG changeset patch # User Stefan Vogel # Date 1392214447 -3600 # Node ID 24d68f700fdf447419dc145b60e3f2615fc92333 # Parent 84ded9e95455f7b6ce14175eb2a328a719e57832 class: MD5Stream changed: #nextPutBytes:from:startingAt: diff -r 84ded9e95455 -r 24d68f700fdf MD5Stream.st --- 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 $' ! !