From 96f50dd5e600925488fdd9db1580aa01b026269b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 6 Oct 2023 02:37:16 +0200 Subject: Use dcp::filesystem to wrap filesystem calls and fix_long_path anything that is passed to read_file() from libcxml. This should fix #2623 and other similar problems. --- src/lib/analytics.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/analytics.cc') diff --git a/src/lib/analytics.cc b/src/lib/analytics.cc index 75146cb45..836051fe5 100644 --- a/src/lib/analytics.cc +++ b/src/lib/analytics.cc @@ -22,6 +22,7 @@ #include "analytics.h" #include "compose.hpp" #include "exceptions.h" +#include #include #include #include @@ -110,7 +111,7 @@ Analytics::read () try { cxml::Document f ("Analytics"); - f.read_file (read_path("analytics.xml")); + f.read_file(dcp::filesystem::fix_long_path(read_path("analytics.xml"))); _successful_dcp_encodes = f.number_child("SuccessfulDCPEncodes"); } catch (...) { /* Never mind */ -- cgit v1.2.3