summaryrefslogtreecommitdiff
path: root/gtk/gtkprinteroption.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-06-14 21:53:53 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-06-14 21:53:53 -0400
commitf68c073e33a078b9c3574c5c9a02f44f13f39cb3 (patch)
tree712506c2fd95a77fd20fcb13e4d89d72d4d9033b /gtk/gtkprinteroption.c
parent32f0761daa7c86794d9b387f41cec42cbe02ab52 (diff)
downloadgtk+-f68c073e33a078b9c3574c5c9a02f44f13f39cb3.tar.gz
Remove a redundant NULL check
Diffstat (limited to 'gtk/gtkprinteroption.c')
-rw-r--r--gtk/gtkprinteroption.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk/gtkprinteroption.c b/gtk/gtkprinteroption.c
index c2ba064f20..b2f4d106ec 100644
--- a/gtk/gtkprinteroption.c
+++ b/gtk/gtkprinteroption.c
@@ -178,8 +178,7 @@ gtk_printer_option_set (GtkPrinterOption *option,
return;
if ((option->type == GTK_PRINTER_OPTION_TYPE_PICKONE ||
- option->type == GTK_PRINTER_OPTION_TYPE_ALTERNATIVE) &&
- value != NULL)
+ option->type == GTK_PRINTER_OPTION_TYPE_ALTERNATIVE))
{
int i;
@@ -195,7 +194,7 @@ gtk_printer_option_set (GtkPrinterOption *option,
if (i == option->num_choices)
return; /* Not found in available choices */
}
-
+
g_free (option->value);
option->value = g_strdup (value);