help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] more bugs


From: Vladimir Machulsky
Subject: [Help-smalltalk] more bugs
Date: Thu, 9 May 2002 11:41:48 -0700 (PDT)

Hi !
1)    Try this :
   Smalltalk at: #a put: (WriteStream on: Array new) !
   a growCollection !
   temporary fix :
*** gst/kernel/WriteStream.st:1.1.1.1   Thu May  9
13:54:26 2002
--- gst/kernel/WriteStream.st   Thu May  9 20:11:50
2002
***************
*** 145,150 ****
--- 145,152 ----
     | size |
     size := collection size.
+    size = 0 ifTrue: [ collection := collection
copyEmpty: 1 ].
+
     "Guess which collection is which :-)"
     collection := ((collection copyEmpty: (size * 2
max: 8))
        replaceFrom: 1 to: collection size with:
collection startingAt: 1;

2)    Try this:
   Namespace current: 'TCP' !
   (IPAddress allByName: 'www.av.com') printNl !
   We have huge count of incorrect adresses.
*** gst/tcp/tcp.c:1.1.1.1       Thu May  9 20:35:38
2002
--- gst/tcp/tcp.c       Thu May  9 21:27:59 2002
***************
*** 123,128 ****
--- 123,129 ----
      }
    result = malloc (i - data);
+   memset(result,0,i - data + 4);
    memcpy (result, data, i - data);
    return (result);
  }

Bye !

=====
BR, Vladimir Machulsky. address@hidden

__________________________________________________
Do You Yahoo!?
Yahoo! Shopping - Mother's Day is May 12th!
http://shopping.yahoo.com



reply via email to

[Prev in Thread] Current Thread [Next in Thread]