rpms/gvfs/devel regexxer-crash.patch,NONE,1.1 gvfs.spec,1.41,1.42

Matthias Clasen (mclasen) fedora-extras-commits at redhat.com
Mon Apr 14 04:45:00 UTC 2008


Author: mclasen

Update of /cvs/extras/rpms/gvfs/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv19782

Modified Files:
	gvfs.spec 
Added Files:
	regexxer-crash.patch 
Log Message:
Fix a bug that causes application crashes


regexxer-crash.patch:

--- NEW FILE regexxer-crash.patch ---
diff -up gvfs-0.2.3/common/gmounttracker.c.regexxer-crash gvfs-0.2.3/common/gmounttracker.c
--- gvfs-0.2.3/common/gmounttracker.c.regexxer-crash	2008-04-14 00:41:08.000000000 -0400
+++ gvfs-0.2.3/common/gmounttracker.c	2008-04-14 00:41:26.000000000 -0400
@@ -236,7 +236,8 @@ g_mount_tracker_finalize (GObject *objec
 
   tracker = G_MOUNT_TRACKER (object);
 
-  g_mutex_free (tracker->lock);
+  if (tracker->lock)
+    g_mutex_free (tracker->lock);
   
   g_list_foreach (tracker->mounts,
 		  (GFunc)g_mount_info_unref, NULL);


Index: gvfs.spec
===================================================================
RCS file: /cvs/extras/rpms/gvfs/devel/gvfs.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- gvfs.spec	12 Apr 2008 03:05:55 -0000	1.41
+++ gvfs.spec	14 Apr 2008 04:44:23 -0000	1.42
@@ -1,7 +1,7 @@
 Summary: Backends for the gio framework in GLib
 Name: gvfs
 Version: 0.2.3
-Release: 2%{?dist}
+Release: 3%{?dist}
 License: LGPLv2+
 Group: System Environment/Libraries
 URL: http://www.gtk.org
@@ -35,6 +35,7 @@
 BuildRequires: libtool
 Patch1: gvfs-0.2.2-archive-integration.patch
 Patch2: gvfs-64clean.patch
+Patch3: regexxer-crash.patch
 
 %description
 The gvfs package provides backend implementations for the gio 
@@ -65,6 +66,7 @@
 %setup -q
 %patch1 -p0 -b .archive-integration
 %patch2 -p1 -b .64clean
+%patch3 -p1 -b .regexxer-crash
 
 %build
 
@@ -178,6 +180,9 @@
 
 
 %changelog
+* Mon Apr 14 2008 Matthias Clasen <mclasen at redhat.com> - 0.2.3-3
+- Fix a bug that causes application crashes (#441084)
+
 * Fri Apr 11 2008 Matthias Clasen <mclasen at redhat.com> - 0.2.3-2
 - Fix a crash of the fuse daemon on 64bit
 




More information about the fedora-extras-commits mailing list