openbsd-ports/multimedia/xine-lib/patches/patch-src_xine-engine_xine_c
sthen cea15ea335 Security update to 1.1.16.3 from Brad (maintainer) - int overflows in
the 4XM demux (TKADV2009-004, CVE-2009-0385) and the Quicktime demux.
2009-04-04 00:28:56 +00:00

13 lines
701 B
Plaintext

$OpenBSD: patch-src_xine-engine_xine_c,v 1.9 2009/04/04 00:28:56 sthen Exp $
--- src/xine-engine/xine.c.orig Wed Feb 18 06:37:43 2009
+++ src/xine-engine/xine.c Fri Apr 3 14:42:43 2009
@@ -1678,7 +1678,7 @@ static void config_save_cb (void *this_gen, xine_cfg_e
pthread_mutex_lock(&this->streams_lock);
if ( (ite = xine_list_front(this->streams)) ) {
stream = xine_list_get_value(this->streams, ite);
- _x_message(stream, XINE_MSG_SECURITY, _("The specified save_dir might be a security risk."), NULL);
+ _x_message(stream, XINE_MSG_SECURITY, _("The specified save_dir might be a security risk."), (char *)NULL);
}
pthread_mutex_unlock(&this->streams_lock);
}