openbsd-ports/multimedia/xine-lib/patches/patch-src_xine-engine_input_rip_c
brad 53a59191f0 update to Xine-lib 1.1.13
This release contains a security fix (buffer overflow in the NSF demuxer,
CVE-2008-1878). There are also a few bug fixes, and a new JACK output
plugin.

ok jakemsr@
2008-06-18 01:26:40 +00:00

22 lines
1.2 KiB
Plaintext

$OpenBSD: patch-src_xine-engine_input_rip_c,v 1.3 2008/06/18 01:26:41 brad Exp $
--- src/xine-engine/input_rip.c.orig Sat Jun 14 19:15:00 2008
+++ src/xine-engine/input_rip.c Mon Jun 16 02:30:51 2008
@@ -565,7 +565,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;
}
@@ -574,7 +574,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