[vlc-devel] commit: Add a warning ( Rémi Denis-Courmont )
git version control
git at videolan.org
Mon Dec 21 20:46:05 CET 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Dec 21 21:45:52 2009 +0200| [c77b28e21ba84f0212383f6c87d29fb5e103cc94] | committer: Rémi Denis-Courmont
Add a warning
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c77b28e21ba84f0212383f6c87d29fb5e103cc94
---
src/misc/probe.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/misc/probe.c b/src/misc/probe.c
index 79922fa..c3de3a4 100644
--- a/src/misc/probe.c
+++ b/src/misc/probe.c
@@ -42,7 +42,10 @@ void *vlc_probe (vlc_object_t *obj,
module_t *mod = module_need (probe, capability, NULL, false);
if (mod != NULL)
+ {
+ msg_Warn (probe, "probing halted");
module_unneed (probe, mod);
+ }
void *ret = probe->list;
*pcount = probe->count;
More information about the vlc-devel
mailing list