[Pkg-utopia-maintainers] Bug#730437: patch
Rian Shelley
rian.shelley at gmail.com
Sat Mar 29 16:39:38 UTC 2014
This is by no means a complete fix, but the following patch fixes the
segfault. It seems to behave normally now.
--- a/nm-manager.c 2014-03-29 11:08:25.000000000 -0500
+++ b/nm-manager.c 2014-03-29 10:53:33.607630448 -0500
@@ -649,7 +649,11 @@
return;
}
- nm_connectivity_set_online (priv->connectivity, new_state >=
NM_STATE_CONNECTED_LOCAL);
+ /* don't set online if there is no connectivity object. this
happens
+ during startup*/
+ if (priv->connectivity) {
+ nm_connectivity_set_online (priv->connectivity, new_state
>= NM_STATE_CONNECTED_LOCAL);
+ }
set_state (manager, new_state);
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/pkg-utopia-maintainers/attachments/20140329/b64480d1/attachment-0001.html>
More information about the Pkg-utopia-maintainers
mailing list