glib r6544 - trunk/gio
- From: otte svn gnome org
- To: svn-commits-list gnome org
- Subject: glib r6544 - trunk/gio
- Date: Wed, 20 Feb 2008 18:45:18 +0000 (GMT)
Author: otte
Date: Wed Feb 20 18:45:18 2008
New Revision: 6544
URL: http://svn.gnome.org/viewvc/glib?rev=6544&view=rev
Log:
2008-02-20 Benjamin Otte <otte gnome org>
* gfile.c: (g_file_mount_mountable):
return from function in error path.
Modified:
trunk/gio/ChangeLog
trunk/gio/gfile.c
Modified: trunk/gio/gfile.c
==============================================================================
--- trunk/gio/gfile.c (original)
+++ trunk/gio/gfile.c Wed Feb 20 18:45:18 2008
@@ -3308,13 +3308,15 @@
iface = G_FILE_GET_IFACE (file);
- if (iface->mount_mountable == NULL)
+ if (iface->mount_mountable == NULL) {
g_simple_async_report_error_in_idle (G_OBJECT (file),
callback,
user_data,
G_IO_ERROR,
G_IO_ERROR_NOT_SUPPORTED,
_("Operation not supported"));
+ return;
+ }
(* iface->mount_mountable) (file,
flags,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]