db3179044c
- Heap overflow in Quicktime atom parsing. (CVE-2008-5234 vector 1) - Multiple buffer overflows. (CVE-2008-5236) - Multiple integer overflows. (CVE-2008-5237) - Unchecked read function results. (CVE-2008-5239) - Unchecked malloc using untrusted values. (CVE-2008-5240 vectors 3 & 4) - Buffer indexing using an untrusted value. (CVE-2008-5243) - Clean up the Makefile - Enable the Xv motion compensation support - Remove the JACK sound support - Remove the now unnecessary multi-packaging - Remove an unnecessary patch for the Sun sound code - Comment out some files in the PLIST that do not pertain to OpenBSD - Add WavPack support from Brad (taking MAINTAINER).
13 lines
647 B
Plaintext
13 lines
647 B
Plaintext
$OpenBSD: patch-src_input_input_net_c,v 1.3 2009/02/02 22:00:42 sthen Exp $
|
|
--- src/input/input_net.c.orig Wed Jan 7 11:14:32 2009
|
|
+++ src/input/input_net.c Thu Jan 8 01:02:35 2009
|
|
@@ -275,7 +275,7 @@ static off_t net_plugin_read (input_plugin_t *this_gen
|
|
xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, "input_net: got %" PRIdMAX " bytes (%" PRIdMAX "/%" PRIdMAX " bytes read)\n", (intmax_t)n, (intmax_t)total, (intmax_t)len);
|
|
|
|
if (n < 0) {
|
|
- _x_message(this->stream, XINE_MSG_READ_ERROR, this->host_port, NULL);
|
|
+ _x_message(this->stream, XINE_MSG_READ_ERROR, this->host_port, (char *)NULL);
|
|
return 0;
|
|
}
|
|
|