Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DLNA-RUI
gupnp
Commits
44f18229
Commit
44f18229
authored
Jan 25, 2011
by
Jens Georg
Committed by
Zeeshan Ali (Khattak)
Jan 25, 2011
Browse files
Remove a cyclic-reference
parent
116f778d
Changes
1
Hide whitespace changes
Inline
Side-by-side
libgupnp/gupnp-network-manager.c
View file @
44f18229
...
...
@@ -95,7 +95,7 @@ nm_device_new (GUPnPNetworkManager *manager,
nm_device
=
g_slice_new0
(
NMDevice
);
nm_device
->
manager
=
g_object_ref
(
manager
)
;
nm_device
->
manager
=
manager
;
nm_device
->
proxy
=
g_object_ref
(
device_proxy
);
return
nm_device
;
...
...
@@ -114,7 +114,6 @@ nm_device_free (NMDevice *nm_device)
g_object_unref
(
nm_device
->
context
);
}
g_object_unref
(
nm_device
->
manager
);
g_slice_free
(
NMDevice
,
nm_device
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment