mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01: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:
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>
|
||||
|
||||
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
||||
@ -20,7 +25,7 @@
|
||||
|
||||
* glib/glib.symbols:
|
||||
* glib/gquark.h:
|
||||
* glib/gdataset.c:
|
||||
* glib/gdataset.c: Add string interning functions.
|
||||
|
||||
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>
|
||||
|
||||
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
||||
@ -20,7 +25,7 @@
|
||||
|
||||
* glib/glib.symbols:
|
||||
* glib/gquark.h:
|
||||
* glib/gdataset.c:
|
||||
* glib/gdataset.c: Add string interning functions.
|
||||
|
||||
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>
|
||||
|
||||
* glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
|
||||
@ -20,7 +25,7 @@
|
||||
|
||||
* glib/glib.symbols:
|
||||
* glib/gquark.h:
|
||||
* glib/gdataset.c:
|
||||
* glib/gdataset.c: Add string interning functions.
|
||||
|
||||
2005-08-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
|
@ -355,7 +355,7 @@ g_key_file_load_from_fd (GKeyFile *key_file,
|
||||
GError **error)
|
||||
{
|
||||
GError *key_file_error = NULL;
|
||||
gsize bytes_read;
|
||||
gssize bytes_read;
|
||||
struct stat stat_buf;
|
||||
gchar read_buf[4096];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user