diff options
Diffstat (limited to 'src/mpris2-interfaces.c')
-rw-r--r-- | src/mpris2-interfaces.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mpris2-interfaces.c b/src/mpris2-interfaces.c index 2a73d2e..f12429f 100644 --- a/src/mpris2-interfaces.c +++ b/src/mpris2-interfaces.c @@ -1,4 +1,4 @@ -/* mpris2-interfaces.c generated by valac 0.11.6, the Vala compiler +/* mpris2-interfaces.c generated by valac 0.11.7, the Vala compiler * generated from mpris2-interfaces.vala, do not modify */ /* @@ -1722,9 +1722,9 @@ void playlist_details_copy (const PlaylistDetails* self, PlaylistDetails* dest) void playlist_details_destroy (PlaylistDetails* self) { - _g_free0 (self->path); - _g_free0 (self->name); - _g_free0 (self->icon_path); + _g_free0 ((*self).path); + _g_free0 ((*self).name); + _g_free0 ((*self).icon_path); } @@ -1756,12 +1756,13 @@ GType playlist_details_get_type (void) { void active_playlist_container_copy (const ActivePlaylistContainer* self, ActivePlaylistContainer* dest) { PlaylistDetails _tmp0_ = {0}; dest->valid = self->valid; - dest->details = (playlist_details_copy (&self->details, &_tmp0_), _tmp0_); + playlist_details_copy (&self->details, &_tmp0_); + dest->details = _tmp0_; } void active_playlist_container_destroy (ActivePlaylistContainer* self) { - playlist_details_destroy (&self->details); + playlist_details_destroy (&(*self).details); } |