Commit 46cd3b97 authored by Rafaël Carré's avatar Rafaël Carré

vlc_Log: allow NULL vlc_object_t parameter

parent 54bd1b5f
...@@ -160,19 +160,21 @@ void vlc_vaLog (vlc_object_t *obj, int type, const char *module, ...@@ -160,19 +160,21 @@ void vlc_vaLog (vlc_object_t *obj, int type, const char *module,
} }
/* Pass message to the callback */ /* Pass message to the callback */
libvlc_priv_t *priv = libvlc_priv (obj->p_libvlc); libvlc_priv_t *priv = obj ? libvlc_priv (obj->p_libvlc) : NULL;
#ifdef WIN32 #ifdef WIN32
va_list ap; va_list ap;
va_copy (ap, args); va_copy (ap, args);
Win32DebugOutputMsg (&priv->log.verbose, type, &msg, format, ap); Win32DebugOutputMsg (priv ? &priv->log.verbose : NULL, type, &msg, format, ap);
va_end (ap); va_end (ap);
#endif #endif
vlc_rwlock_rdlock (&priv->log.lock); if (priv) {
priv->log.cb (priv->log.opaque, type, &msg, format, args); vlc_rwlock_rdlock (&priv->log.lock);
vlc_rwlock_unlock (&priv->log.lock); priv->log.cb (priv->log.opaque, type, &msg, format, args);
vlc_rwlock_unlock (&priv->log.lock);
}
uselocale (locale); uselocale (locale);
freelocale (c); freelocale (c);
......
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