* Tue Nov 7 2006 Alexander Larsson <alexl@redhat.com> - 2.16.2-2.fc7

- Update to 2.16.2
f38
Alexander Larsson 18 years ago
parent 1b648e94f9
commit 7f6dc6e730

@ -0,0 +1,36 @@
Index: libgnomevfs/gnome-vfs-module-callback.c
===================================================================
RCS file: /cvs/gnome/gnome-vfs/libgnomevfs/gnome-vfs-module-callback.c,v
retrieving revision 1.10
diff -u -p -r1.10 gnome-vfs-module-callback.c
--- libgnomevfs/gnome-vfs-module-callback.c 14 Nov 2005 11:41:13 -0000 1.10
+++ libgnomevfs/gnome-vfs-module-callback.c 7 Nov 2006 09:03:37 -0000
@@ -411,11 +411,17 @@ stack_table_destroy (gpointer specific)
stack_table = specific;
g_static_mutex_lock (&callback_table_lock);
- g_hash_table_remove (stack_tables_to_free, stack_table);
+ if (stack_tables_to_free != NULL) {
+ g_hash_table_remove (stack_tables_to_free, stack_table);
+ } else {
+ stack_table = NULL;
+ }
g_static_mutex_unlock (&callback_table_lock);
- clear_stack_table (stack_table);
- g_hash_table_destroy (stack_table);
+ if (stack_table) {
+ clear_stack_table (stack_table);
+ g_hash_table_destroy (stack_table);
+ }
}
static gboolean
@@ -440,6 +446,7 @@ free_stack_tables_to_free (void)
g_static_mutex_lock (&callback_table_lock);
g_hash_table_foreach_remove (stack_tables_to_free, stack_table_free_hr_func , NULL);
g_hash_table_destroy (stack_tables_to_free);
+ stack_tables_to_free = NULL;
g_static_mutex_unlock (&callback_table_lock);
}

@ -12,8 +12,8 @@
Summary: The GNOME virtual file-system libraries
Name: gnome-vfs2
Version: 2.16.1
Release: 1%{?dist}
Version: 2.16.2
Release: 2%{?dist}
License: LGPL
Group: System Environment/Libraries
Source0: gnome-vfs-%{version}.tar.bz2
@ -67,7 +67,9 @@ Patch6: gnome-vfs-2.15.91-mailto-command.patch
# http://bugzilla.gnome.org/show_bug.cgi?id=356772
Patch8: gnome-vfs-2.16.0-no-dbus.patch
# From upstream cvs
Patch9: gnome-vfs-atexit-fix.patch
%description
GNOME VFS is the GNOME virtual file system. It is the foundation of
the Nautilus file manager. It provides a modular architecture and
@ -119,6 +121,7 @@ shares (SMB) to applications using GNOME VFS.
%patch201 -p0 -b .console
%patch8 -p1 -b .no-dbus
%patch9 -p0 -b .gatexit-fix
%build
@ -231,6 +234,9 @@ fi
%config %{_sysconfdir}/gnome-vfs-2.0/modules/smb-module.conf
%changelog
* Tue Nov 7 2006 Alexander Larsson <alexl@redhat.com> - 2.16.2-2.fc7
- Update to 2.16.2
* Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
- Update to 2.16.1

@ -1 +1 @@
2d9f7b01496ecc227015bc7a08fb798f gnome-vfs-2.16.1.tar.bz2
1ad3988f374012f233973188ce518ae8 gnome-vfs-2.16.2.tar.bz2

Loading…
Cancel
Save