Codebase list avahi / b2db3cd
* debian/patches/20_avahi-ui-non-existing-domain-segv.patch: + Patch from upstream SVN (r1448): fix segfault when browsing for services on non-existing domains or domains that don't have any services assigned. git-svn-id: svn+ssh://svn.debian.org/svn/pkg-utopia/packages/unstable/avahi@1425 ceb527fc-18e6-0310-9fe2-813c157c29e7 Sebastian Dröge 17 years ago
2 changed file(s) with 35 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 avahi (0.6.18-3) UNRELEASED; urgency=low
1
0 avahi (0.6.18-3) unstable; urgency=low
1
2 [ Sjoerd Simons ]
23 * debian/avahi-daemon.postinst:
34 + Don't let adduser create avahi-daemon's homedir. This prevents it from
45 being created with the wrong permissions. (Closes: #419935)
56
6 -- Sjoerd Simons <sjoerd@debian.org> Thu, 19 Apr 2007 21:21:21 +0200
7 [ Sebastian Dröge ]
8 * debian/patches/20_avahi-ui-non-existing-domain-segv.patch:
9 + Patch from upstream SVN (r1448): fix segfault when browsing for services
10 on non-existing domains or domains that don't have any services assigned.
11
12 -- Sebastian Dröge <slomo@debian.org> Fri, 20 Apr 2007 21:05:05 +0200
713
814 avahi (0.6.18-2) unstable; urgency=low
915
0 Index: /trunk/avahi-ui/avahi-ui.c
1 ===================================================================
2 --- /trunk/avahi-ui/avahi-ui.c (revision 1431)
3 +++ /trunk/avahi-ui/avahi-ui.c (revision 1448)
4 @@ -609,4 +609,5 @@
5
6 g_return_val_if_fail(d, NULL);
7 + g_return_val_if_fail(AUI_IS_SERVICE_DIALOG(d), NULL);
8
9 if (d->priv->domain)
10 @@ -693,5 +694,5 @@
11
12 if (d->priv->service_pulse_timeout <= 0)
13 - d->priv->service_pulse_timeout = g_timeout_add(100, service_pulse_callback, d->priv);
14 + d->priv->service_pulse_timeout = g_timeout_add(100, service_pulse_callback, d);
15
16 for (i = 0; d->priv->browse_service_types[i]; i++)
17 @@ -873,5 +874,5 @@
18 }
19
20 -static void domain_button_clicked(GtkButton *button, gpointer user_data) {
21 +static void domain_button_clicked(GtkButton *button, gpointer user_data) {
22 GtkWidget *vbox, *vbox2, *scrolled_window;
23 GtkTreeSelection *selection;
24
25