diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-02-17 10:36:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-02-17 10:36:15 +0100 |
| commit | 17adeaa0351816cb56ef31ddee714627654a2b37 (patch) | |
| tree | 94f9b90a734e521c76228ede593c7772acf3e971 | |
| parent | 89fbc8d186378cd72ab3e9a259073d45b7b993ad (diff) | |
Fix incorrect filename encoding on Windows (DoM #2459).v1.8.59
| -rw-r--r-- | src/verify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.cc b/src/verify.cc index 822037ca..ed6c78d6 100644 --- a/src/verify.cc +++ b/src/verify.cc @@ -278,7 +278,7 @@ private: static void parse (XercesDOMParser& parser, boost::filesystem::path xml) { - parser.parse(xml.string().c_str()); + parser.parse(xml.c_str()); } |
