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
22 lines
1.2 KiB
Plaintext
22 lines
1.2 KiB
Plaintext
$OpenBSD: patch-src_xine-engine_input_rip_c,v 1.2 2008/01/15 00:36:46 jakemsr Exp $
|
|
--- src/xine-engine/input_rip.c.orig Tue Jan 1 08:30:09 2008
|
|
+++ src/xine-engine/input_rip.c Wed Jan 9 01:50:22 2008
|
|
@@ -566,7 +566,7 @@ input_plugin_t *_x_rip_plugin_get_instance (xine_strea
|
|
xine_log(stream->xine, XINE_LOG_MSG,
|
|
_("input_rip: target directory wasn't specified, please fill out the option 'media.capture.save_dir'\n"));
|
|
_x_message(stream, XINE_MSG_SECURITY,
|
|
- _("The stream save feature is disabled until you set media.capture.save_dir in the configuration."), NULL);
|
|
+ _("The stream save feature is disabled until you set media.capture.save_dir in the configuration."), (char *)NULL);
|
|
return NULL;
|
|
}
|
|
|
|
@@ -575,7 +575,7 @@ input_plugin_t *_x_rip_plugin_get_instance (xine_strea
|
|
xine_log(stream->xine, XINE_LOG_MSG,
|
|
_("input_rip: ripping/caching of this source is not permitted!\n"));
|
|
_x_message(stream, XINE_MSG_SECURITY,
|
|
- _("xine is not allowed to save from this source. (possibly copyrighted material?)"), NULL);
|
|
+ _("xine is not allowed to save from this source. (possibly copyrighted material?)"), (char *)NULL);
|
|
return NULL;
|
|
}
|
|
#endif
|