Thread: [Gambas-devel-svn] SF.net SVN: gambas:[3455] gambas/trunk/main/gbx/gbx_stream.c
Brought to you by:
gambas
From: <ga...@us...> - 2011-01-15 01:04:38
|
Revision: 3455 http://gambas.svn.sourceforge.net/gambas/?rev=3455&view=rev Author: gambas Date: 2011-01-15 01:04:32 +0000 (Sat, 15 Jan 2011) Log Message: ----------- [INTERPRETER] * BUG: Fix the READ instruction when reading null strings. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-05-01 13:02:41
|
Revision: 5633 http://sourceforge.net/p/gambas/code/5633 Author: gambas Date: 2013-05-01 13:02:38 +0000 (Wed, 01 May 2013) Log Message: ----------- [INTERPRETER] * BUG: Don't wait for a stream to be ready for reading if the stream has no underlying file descriptor. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-08-19 21:45:18
|
Revision: 5811 http://sourceforge.net/p/gambas/code/5811 Author: gambas Date: 2013-08-19 21:45:13 +0000 (Mon, 19 Aug 2013) Log Message: ----------- [INTERPRETER] * BUG: Disable read watch when reading a stream fails for any reason: i/o error, end-of-file... Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-08-29 19:15:16
|
Revision: 5816 http://sourceforge.net/p/gambas/code/5816 Author: gambas Date: 2013-08-29 19:15:14 +0000 (Thu, 29 Aug 2013) Log Message: ----------- [INTERPRETER] * BUG: Do not stop watching when reading up to a specified number of bytes. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-08-29 20:21:23
|
Revision: 5817 http://sourceforge.net/p/gambas/code/5817 Author: gambas Date: 2013-08-29 20:21:20 +0000 (Thu, 29 Aug 2013) Log Message: ----------- [INTERPRETER] * BUG: Fix "stop watching on end of file" algorithm again. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-08-29 20:52:17
|
Revision: 5818 http://sourceforge.net/p/gambas/code/5818 Author: gambas Date: 2013-08-29 20:52:14 +0000 (Thu, 29 Aug 2013) Log Message: ----------- [INTERPRETER] * BUG: Continue on fixing "stop watching on end of file" algorithm... Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-07-27 21:04:32
|
Revision: 6398 http://sourceforge.net/p/gambas/code/6398 Author: gambas Date: 2014-07-27 21:04:29 +0000 (Sun, 27 Jul 2014) Log Message: ----------- [INTERPRETER] * BUG: When reading lines ending with a "Window" end-of-line sequence (CR+LF), the LINE INPUT instruction could sometimes forget to remove the first end-of-line character from the end of the line (CR). Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-08-02 21:37:57
|
Revision: 6413 http://sourceforge.net/p/gambas/code/6413 Author: gambas Date: 2014-08-02 21:37:49 +0000 (Sat, 02 Aug 2014) Log Message: ----------- [INTERPRETER] * BUG: The stream available length function now correctly returns zero when it fails. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-03-19 13:50:42
|
Revision: 6993 http://sourceforge.net/p/gambas/code/6993 Author: gambas Date: 2015-03-19 13:50:35 +0000 (Thu, 19 Mar 2015) Log Message: ----------- [INTERPRETER] * BUG: Stream read ahead does not have to wait for the descriptor to be ready for reading. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-07-09 14:39:40
|
Revision: 7176 http://sourceforge.net/p/gambas/code/7176 Author: gambas Date: 2015-07-09 14:39:38 +0000 (Thu, 09 Jul 2015) Log Message: ----------- [INTERPRETER] * BUG: Finally fixed! LINE INPUT internal buffer is now correctly reset when SEEK is used. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-03-08 20:04:56
|
Revision: 7622 http://sourceforge.net/p/gambas/code/7622 Author: gambas Date: 2016-03-08 20:04:55 +0000 (Tue, 08 Mar 2016) Log Message: ----------- [INTERPRETER] * BUG: Now raise an error when a stream cannot be closed, instead of silently ignoring it. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-03-23 02:58:14
|
Revision: 7658 http://sourceforge.net/p/gambas/code/7658 Author: gambas Date: 2016-03-23 02:58:13 +0000 (Wed, 23 Mar 2016) Log Message: ----------- [INTERPRETER] * BUG: Ignore EINPROGRESS and EAGAIN error codes when closing a file descriptor. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-03-18 12:14:02
|
Revision: 8110 http://sourceforge.net/p/gambas/code/8110 Author: gambas Date: 2017-03-18 12:14:01 +0000 (Sat, 18 Mar 2017) Log Message: ----------- [INTERPRETER] * BUG: Fix a possible bad serialization of arrays. * BUG: Don't crash during the unserialisation of an array whose datatype has been incorrectly serialized. Raise an error instead. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |