In src/plugins.c:

> +			plugin_free((Plugin *) item->data);
> +		}
> +		item = next;
> +	}
> +}
> +
> +
> +/* Returns true if the removal was successful (=> never for non-proxies) */
> +static gboolean unregister_proxy(Plugin *proxy)
> +{
> +	gboolean is_proxy = FALSE;
> +	GList *node;
> +
> +	/* Remove the proxy from the proxy list first. It might appear more than once (once
> +	 * for each extension), but if it doesn't appear at all it's not actually a proxy */
> +	foreach_list_safe(node, active_proxies.head)

Which other place?


Reply to this email directly or view it on GitHub.