[vlc-commits] Disable the dangling callback warning for the time being
Rémi Denis-Courmont
git at videolan.org
Tue Aug 16 21:53:24 CEST 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Aug 16 22:15:27 2011 +0300| [95e2c6b4826acd58b1f9d86dcc12bc5b11095383] | committer: Rémi Denis-Courmont
Disable the dangling callback warning for the time being
It might not always be a bug.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=95e2c6b4826acd58b1f9d86dcc12bc5b11095383
---
src/misc/variables.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/misc/variables.c b/src/misc/variables.c
index fc789ae..e3d480e 100644
--- a/src/misc/variables.c
+++ b/src/misc/variables.c
@@ -170,7 +170,7 @@ static void Destroy( variable_t *p_var )
free( p_var->choices.p_values );
free( p_var->choices_text.p_values );
}
-#ifndef NDEBUG
+#if 0 // ndef NDEBUG
for (int i = 0; i < p_var->i_entries; i++)
{
const char *file = "?", *symbol = "?";
More information about the vlc-commits
mailing list