View | Details | Raw Unified | Return to bug 231229 | Differences between
and this patch

Collapse All | Expand All

(-)multimedia/kodi/files/patch-xbmc_cores_DllLoader_exports_wrapper.c (+11 lines)
Line 0 Link Here
1
--- xbmc/cores/DllLoader/exports/wrapper.c.bak	2017-11-14 19:55:01.000000000 +0300
2
+++ xbmc/cores/DllLoader/exports/wrapper.c	2018-09-08 00:55:50.161993000 +0300
3
@@ -45,7 +45,7 @@
4
 typedef off64_t   __off64_t;
5
 typedef fpos_t    fpos64_t;
6
 #define stat64    stat
7
-#if defined(TARGET_DARWIN) || defined(TARGET_ANDROID)
8
+#if defined(TARGET_DARWIN) || defined(TARGET_FREEBSD) || defined(TARGET_ANDROID)
9
 #define _G_va_list va_list
10
 #endif
11
 #endif
(-)multimedia/kodi/files/patch-xbmc_filesystem_DAVDirectory.cpp (+11 lines)
Line 0 Link Here
1
--- xbmc/filesystem/DAVDirectory.cpp.bak	2018-09-07 21:06:46.153753000 +0300
2
+++ xbmc/filesystem/DAVDirectory.cpp	2018-09-07 21:07:02.382731000 +0300
3
@@ -83,7 +83,7 @@
4
               else
5
               if (CDAVCommon::ValueWithoutNamespace(pPropChild, "displayname") && !pPropChild->NoChildren())
6
               {
7
-                item.SetLabel(pPropChild->FirstChild()->ValueStr());
8
+                item.SetLabel(CURL::Decode(pPropChild->FirstChild()->ValueStr()));
9
               }
10
               else
11
               if (!item.m_dateTime.IsValid() && CDAVCommon::ValueWithoutNamespace(pPropChild, "creationdate") && !pPropChild->NoChildren())

Return to bug 231229