-
ssolie committed patchset 1137 of module expat to the Expat XML Parser CVS repository, changing 10 files.
2009-08-08 03:48:55 UTC in Expat XML Parser
-
The limits.h file contains incorrect INT_MIN, INT_MAX and UINT_MAX macros. They are defining values of type long and unsigned long. They should define values of int and unsigned int. This is breaking C++ code which is strongly typed. Specifically, some Boost C++ unit tests are failing.
When I changed INT_MIN/INT_MAX to type int the C++ unit tests passed.
2009-03-01 05:35:34 UTC in clib2
-
ssolie committed patchset 1136 of module expat to the Expat XML Parser CVS repository, changing 3 files.
2009-02-10 03:47:00 UTC in Expat XML Parser
-
ssolie committed patchset 1135 of module expat to the Expat XML Parser CVS repository, changing 6 files.
2009-01-31 20:57:34 UTC in Expat XML Parser
-
ssolie committed patchset 1134 of module expat to the Expat XML Parser CVS repository, changing 11 files.
2009-01-31 06:21:09 UTC in Expat XML Parser
-
As discussed in email, this is actually a bug in
the kernel select() function.
Until the new bsdsocket.library is made public I suggest
making a small modification to the waitselect() function
so that it does work.
Change the time delay from zero to 10 microseconds for
all WaitSelect() calls using Amiga signals. You may
even be able to eliminate the Delay(1) calls in there
now.
2007-08-18 23:10:18 UTC in clib2
-
I found out the isatty() function crashes badly when passed a socket file descriptor.
Here is the fix I came up with:
int
isatty(int file_descriptor)
{
...
if(FLAG_IS_SET(fd->fd_Flags,FDF_IS_SOCKET))
{
__set_errno(ENOTTY);
goto out;
}
result = 1;
if(FLAG_IS_CLEAR(fd->fd_Flags,FDF_IS_INTERACTIVE))
{
BPTR file;
file = __resolve_fd_file(fd);
if(file...
2007-08-14 02:58:50 UTC in clib2
-
Sounds like this isn't an error. Closing.
2007-08-14 02:50:17 UTC in clib2
-
ssolie committed patchset 1117 of module expat to the Expat XML Parser CVS repository, changing 7 files.
2007-06-03 15:00:09 UTC in Expat XML Parser
-
ssolie committed patchset 1116 of module expat to the Expat XML Parser CVS repository, changing 2 files.
2007-06-03 14:58:37 UTC in Expat XML Parser