summaryrefslogtreecommitdiff
path: root/gtk/gtkprinteroptionwidget.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-06-21 19:05:22 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-06-21 19:05:22 +0000
commitf3843afeadb30570932ece8a940f5120930db60a (patch)
tree38b85b197509082dbfb811bf8bc0a7c5ca8f2da8 /gtk/gtkprinteroptionwidget.c
parentbe8f3c72ea1ae469f7f1fa29be40f9e750f9f1ee (diff)
downloadgtk+-f3843afeadb30570932ece8a940f5120930db60a.tar.gz
Don't free the value.
2006-06-21 Matthias Clasen <mclasen@redhat.com> * gtk/gtkprinteroptionwidget.c (radio_changed_cb): Don't free the value.
Diffstat (limited to 'gtk/gtkprinteroptionwidget.c')
-rw-r--r--gtk/gtkprinteroptionwidget.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gtk/gtkprinteroptionwidget.c b/gtk/gtkprinteroptionwidget.c
index 85b767baab..d5d625f235 100644
--- a/gtk/gtkprinteroptionwidget.c
+++ b/gtk/gtkprinteroptionwidget.c
@@ -494,7 +494,6 @@ radio_changed_cb (GtkWidget *button,
value = g_object_get_data (G_OBJECT (button), "value");
if (value)
gtk_printer_option_set (priv->source, value);
- g_free (value);
g_signal_handler_unblock (priv->source, priv->source_changed_handler);
emit_changed (widget);
}