Commit c77b28e2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Add a warning

parent 88c6f5f8
...@@ -42,7 +42,10 @@ void *vlc_probe (vlc_object_t *obj, ...@@ -42,7 +42,10 @@ void *vlc_probe (vlc_object_t *obj,
module_t *mod = module_need (probe, capability, NULL, false); module_t *mod = module_need (probe, capability, NULL, false);
if (mod != NULL) if (mod != NULL)
{
msg_Warn (probe, "probing halted");
module_unneed (probe, mod); module_unneed (probe, mod);
}
void *ret = probe->list; void *ret = probe->list;
*pcount = probe->count; *pcount = probe->count;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment