[vlc-devel] commit: Add a FIXME ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Aug 14 18:33:06 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Thu Aug 14 19:35:58 2008 +0300| [016215bddf5691cfd448225a9136667a5a570ab8] | committer: Rémi Denis-Courmont
Add a FIXME
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=016215bddf5691cfd448225a9136667a5a570ab8
---
src/misc/threads.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/misc/threads.c b/src/misc/threads.c
index 965338d..06e85a3 100644
--- a/src/misc/threads.c
+++ b/src/misc/threads.c
@@ -417,6 +417,7 @@ int vlc_threadvar_create( vlc_threadvar_t *p_tls, void (*destr) (void *) )
#elif defined( UNDER_CE )
i_ret = ENOSYS;
#elif defined( WIN32 )
+ /* FIXME: remember/use the destr() callback and stop leaking whatever */
*p_tls = TlsAlloc();
i_ret = (*p_tls == TLS_OUT_OF_INDEXES) ? EAGAIN : 0;
#else
More information about the vlc-devel
mailing list