mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-19 07:08:54 +02:00
The return value of read() is signed. (#315273, Kjartan Maraas)
2005-09-05 Matthias Clasen <mclasen@redhat.com> * glib/gkeyfile.c (g_key_file_load_from_fd): The return value of read() is signed. (#315273, Kjartan Maraas)
This commit is contained in:
committed by
Matthias Clasen
parent
c05c2782ea
commit
1c0b689399
@@ -1,3 +1,8 @@
|
|||||||
|
2005-09-05 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gkeyfile.c (g_key_file_load_from_fd): The return value
|
||||||
|
of read() is signed. (#315273, Kjartan Maraas)
|
||||||
|
|
||||||
2005-08-31 Tor Lillqvist <tml@novell.com>
|
2005-08-31 Tor Lillqvist <tml@novell.com>
|
||||||
|
|
||||||
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
||||||
@@ -20,7 +25,7 @@
|
|||||||
|
|
||||||
* glib/glib.symbols:
|
* glib/glib.symbols:
|
||||||
* glib/gquark.h:
|
* glib/gquark.h:
|
||||||
* glib/gdataset.c:
|
* glib/gdataset.c: Add string interning functions.
|
||||||
|
|
||||||
2005-08-28 Matthias Clasen <mclasen@redhat.com>
|
2005-08-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2005-09-05 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gkeyfile.c (g_key_file_load_from_fd): The return value
|
||||||
|
of read() is signed. (#315273, Kjartan Maraas)
|
||||||
|
|
||||||
2005-08-31 Tor Lillqvist <tml@novell.com>
|
2005-08-31 Tor Lillqvist <tml@novell.com>
|
||||||
|
|
||||||
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
||||||
@@ -20,7 +25,7 @@
|
|||||||
|
|
||||||
* glib/glib.symbols:
|
* glib/glib.symbols:
|
||||||
* glib/gquark.h:
|
* glib/gquark.h:
|
||||||
* glib/gdataset.c:
|
* glib/gdataset.c: Add string interning functions.
|
||||||
|
|
||||||
2005-08-28 Matthias Clasen <mclasen@redhat.com>
|
2005-08-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2005-09-05 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gkeyfile.c (g_key_file_load_from_fd): The return value
|
||||||
|
of read() is signed. (#315273, Kjartan Maraas)
|
||||||
|
|
||||||
2005-08-31 Tor Lillqvist <tml@novell.com>
|
2005-08-31 Tor Lillqvist <tml@novell.com>
|
||||||
|
|
||||||
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
||||||
@@ -20,7 +25,7 @@
|
|||||||
|
|
||||||
* glib/glib.symbols:
|
* glib/glib.symbols:
|
||||||
* glib/gquark.h:
|
* glib/gquark.h:
|
||||||
* glib/gdataset.c:
|
* glib/gdataset.c: Add string interning functions.
|
||||||
|
|
||||||
2005-08-28 Matthias Clasen <mclasen@redhat.com>
|
2005-08-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
@@ -355,7 +355,7 @@ g_key_file_load_from_fd (GKeyFile *key_file,
|
|||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
GError *key_file_error = NULL;
|
GError *key_file_error = NULL;
|
||||||
gsize bytes_read;
|
gssize bytes_read;
|
||||||
struct stat stat_buf;
|
struct stat stat_buf;
|
||||||
gchar read_buf[4096];
|
gchar read_buf[4096];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user