mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-03 06:32:10 +01:00
Avoid unused variables
svn path=/trunk/; revision=7690
This commit is contained in:
parent
6417df2a91
commit
c5938128ec
@ -1,13 +1,21 @@
|
||||
2008-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 541715 – win32 : patch for warnings and signature problems in
|
||||
recent code
|
||||
|
||||
* glocalvfs.c: Avoid unused variables. Pointed out by Jody
|
||||
Goldberg.
|
||||
|
||||
2008-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 562393 – g_buffered_input_stream_read_byte broken if data
|
||||
available
|
||||
|
||||
* gio/gbufferedinputstream.c (g_buffered_input_stream_read_byte): Fix
|
||||
* gbufferedinputstream.c (g_buffered_input_stream_read_byte): Fix
|
||||
handling of buffered content. Patch by Philip Withnall
|
||||
|
||||
* gio/tests/buffered-input-stream.c: Add a testcase for this bug.
|
||||
* gio/tests/Makefile.am: And build it
|
||||
* tests/buffered-input-stream.c: Add a testcase for this bug.
|
||||
* tests/Makefile.am: And build it
|
||||
|
||||
2008-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
|
@ -115,11 +115,13 @@ g_local_vfs_parse_name (GVfs *vfs,
|
||||
{
|
||||
GFile *file;
|
||||
char *filename;
|
||||
char *user_name;
|
||||
char *user_prefix;
|
||||
const char *user_start, *user_end;
|
||||
char *rest;
|
||||
#ifdef HAVE_PWD_H
|
||||
struct passwd *passwd_file_entry;
|
||||
char *user_name;
|
||||
#endif
|
||||
|
||||
g_return_val_if_fail (G_IS_VFS (vfs), NULL);
|
||||
g_return_val_if_fail (parse_name != NULL, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user