eb44a52c7c
security fix: CVE-2008-0225 - heap-based buffer overflow in libreal (RTSP) also incorporates post release bug fix in WMV decoding from brad, thanks
13 lines
703 B
Plaintext
13 lines
703 B
Plaintext
$OpenBSD: patch-src_xine-engine_xine_c,v 1.3 2008/01/15 00:36:46 jakemsr Exp $
|
|
--- src/xine-engine/xine.c.orig Tue Jan 1 10:36:02 2008
|
|
+++ src/xine-engine/xine.c Wed Jan 9 01:50:22 2008
|
|
@@ -1614,7 +1614,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);
|
|
}
|