Patch by: Brian Cameron <brian.cameron@sun.com>
2008-08-21 Jens Granseuer <jensgr@gmx.net> Patch by: Brian Cameron <brian.cameron@sun.com> * sound-theme.c: (set_combox_for_theme_name): trying to print NULL strings crashes on Solaris (bug #548586) svn path=/trunk/; revision=8878
This commit is contained in:
parent
b15552fdd9
commit
a431229943
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-08-21 Jens Granseuer <jensgr@gmx.net>
|
||||
|
||||
Patch by: Brian Cameron <brian.cameron@sun.com>
|
||||
|
||||
* sound-theme.c: (set_combox_for_theme_name): trying to print NULL
|
||||
strings crashes on Solaris (bug #548586)
|
||||
|
||||
2008-08-16 Jens Granseuer <jensgr@gmx.net>
|
||||
|
||||
Patch by: Matthias Clasen <mclasen@redhat.com>
|
||||
|
|
|
@ -227,7 +227,7 @@ set_combox_for_theme_name (GladeXML *dialog, const char *name)
|
|||
GtkTreeModel *model;
|
||||
gboolean found;
|
||||
|
||||
g_debug ("setting theme %s", name);
|
||||
g_debug ("setting theme %s", name ? name : "(null)");
|
||||
|
||||
/* If the name is empty, use "freedesktop" */
|
||||
if (name == NULL || *name == '\0')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue