GIFReader.st
changeset 3784 3f67fdf386bd
parent 3775 d044932c0154
child 3848 fdaa0179292f
--- a/GIFReader.st	Fri Nov 11 17:22:08 2016 +0100
+++ b/GIFReader.st	Wed Nov 16 23:15:41 2016 +0100
@@ -593,7 +593,7 @@
         (compressedData size < (index+count)) ifTrue:[
             |t|
 
-            t := ByteArray uninitializedNew:(index+count*3//2).
+            t := ByteArray uninitializedNew:((index+count)*3//2).
             t replaceBytesFrom:1 to:index-1 with:compressedData startingAt:1.
             compressedData := t.
         ].
@@ -659,8 +659,9 @@
         tmp := nil.
     ].
 
-    "Created: / 13.1.1998 / 10:44:05 / cg"
-    "Modified: / 12.8.1998 / 13:55:32 / cg"
+    "Created: / 13-01-1998 / 10:44:05 / cg"
+    "Modified: / 12-08-1998 / 13:55:32 / cg"
+    "Modified (format): / 16-11-2016 / 23:07:20 / cg"
 ! !
 
 !GIFReader methodsFor:'private-writing'!