xbmc: update to xbmc-11.0.3

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2012-10-09 18:06:34 +02:00
parent e3e5caba39
commit d68f058235
43 changed files with 2 additions and 47 deletions

View File

@ -19,7 +19,7 @@
################################################################################
PKG_NAME="xbmc-theme-Confluence"
PKG_VERSION="11.0.2"
PKG_VERSION="11.0.3"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -19,7 +19,7 @@
################################################################################
PKG_NAME="xbmc"
PKG_VERSION="11.0.2"
PKG_VERSION="11.0.3"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -1,12 +0,0 @@
diff -Naur xbmc-pvr-11.0.2/system/peripherals.xml xbmc-pvr-11.0.2.patch/system/peripherals.xml
--- xbmc-pvr-11.0.2/system/peripherals.xml 2012-07-05 21:04:48.000000000 +0200
+++ xbmc-pvr-11.0.2.patch/system/peripherals.xml 2012-09-17 23:54:58.559892913 +0200
@@ -8,7 +8,7 @@
<setting key="key_user" value="" label="36004" />
</peripheral>
- <peripheral vendor_product="2548:1001" bus="usb" name="Pulse-Eight CEC Adaptor" mapTo="cec">
+ <peripheral vendor_product="2548:1001,2548:1002" bus="usb" name="Pulse-Eight CEC Adaptor" mapTo="cec">
<setting key="enabled" type="bool" value="1" label="305" />
<setting key="port" type="string" value="" label="792" />
<setting key="cec_hdmi_port" type="int" value="1" min="1" max="16" label="36015" />

View File

@ -1139,39 +1139,6 @@ index be7dfea..bd8e91b 100644
1.7.10
From c0409779940d74993669788ce0b01d257508a581 Mon Sep 17 00:00:00 2001
From: Joakim Plate <elupus@xbmc.org>
Date: Sun, 8 Jul 2012 01:06:05 +0200
Subject: [PATCH 07/14] [tinyxml] invalid reading of xml from FILE pointers
buf is not a null terminated string, so don't rely on it
---
xbmc/utils/XBMCTinyXML.cpp | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/xbmc/utils/XBMCTinyXML.cpp b/xbmc/utils/XBMCTinyXML.cpp
index 82e2451..707653c 100644
--- a/xbmc/utils/XBMCTinyXML.cpp
+++ b/xbmc/utils/XBMCTinyXML.cpp
@@ -91,12 +91,9 @@ bool CXBMCTinyXML::LoadFile(FILE *f, TiXmlEncoding encoding)
{
CStdString data("");
char buf[BUFFER_SIZE];
- int result, count = 0;
+ int result;
while ((result = fread(buf, 1, BUFFER_SIZE, f)) > 0)
- {
- data.reserve(BUFFER_SIZE * (++count));
- data.append(buf);
- }
+ data.append(buf, result);
return Parse(data, NULL, encoding) != NULL;
}
--
1.7.10
From 42e557c33536b026e2e871d137bb7c781d8f5399 Mon Sep 17 00:00:00 2001
From: xbmc <fernetmenta@online.de>
Date: Sun, 2 Sep 2012 16:05:21 +0200