Skip to content
Snippets Groups Projects
Commit 697226f3 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

session-bin: call parent's reset() in reset()

otherwise the parent never un-exports or de-activates itself
and we leak a bunch of stuff
parent 879c7d2a
Branches apertis/v2022pre apertis/v2023dev0
Tags apertis/0.4.5-1+apertis1
No related merge requests found
......@@ -33,6 +33,8 @@ si_session_bin_reset (WpSessionItem * item)
WpSessionBin * self = WP_SESSION_BIN (item);
WpSessionBinPrivate *priv = wp_session_bin_get_instance_private (self);
WP_SESSION_ITEM_CLASS (wp_session_bin_parent_class)->reset (item);
g_ptr_array_set_size (priv->items, 0);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment