Bug 545457 – gdmsetup crashed with SIGSEGV in

2008-07-30  Matthias Clasen  <mclasen@redhat.com>

        Bug 545457 – gdmsetup crashed with SIGSEGV in
        g_unix_mount_guess_should_display()

        * gunixvolumemonitor.c (get_mount_for_mount_path): Don't
        crash if no mount is found.


svn path=/trunk/; revision=7274
This commit is contained in:
Matthias Clasen 2008-07-30 16:45:46 +00:00 committed by Matthias Clasen
parent 274c2dc8c5
commit 4d23d2647a
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2008-07-30 Matthias Clasen <mclasen@redhat.com>
Bug 545457 gdmsetup crashed with SIGSEGV in
g_unix_mount_guess_should_display()
* gunixvolumemonitor.c (get_mount_for_mount_path): Don't
crash if no mount is found.
2008-07-28 Matthias Clasen <mclasen@redhat.com>
Bug 545203 gfile.c: argument is different type.

View File

@ -150,7 +150,10 @@ get_mount_for_mount_path (const char *mount_path,
GUnixMount *mount;
mount_entry = g_unix_mount_at (mount_path, NULL);
if (!mount_entry)
return NULL;
/* TODO: Set mountable volume? */
mount = _g_unix_mount_new (NULL, mount_entry, NULL);