diff options
Diffstat (limited to 'debian/patches')
| -rw-r--r-- | debian/patches/0105-Fix_path_handling_bug.patch | 19 | ||||
| -rw-r--r-- | debian/patches/series | 1 | 
2 files changed, 20 insertions, 0 deletions
| diff --git a/debian/patches/0105-Fix_path_handling_bug.patch b/debian/patches/0105-Fix_path_handling_bug.patch new file mode 100644 index 0000000..de893b1 --- /dev/null +++ b/debian/patches/0105-Fix_path_handling_bug.patch @@ -0,0 +1,19 @@ +Description: Fix path handling bug +Author: Boris Kolpackov <boris@codesynthesis.com> +Origin: git commit b4c3242a763e0461f454cc29be28c2ab26e4a495 +Last-Update: 2016-09-10 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/xsd/examples/cxx/tree/embedded/xsdbin.cxx +=================================================================== +--- trunk.orig/xsd/examples/cxx/tree/embedded/xsdbin.cxx ++++ trunk/xsd/examples/cxx/tree/embedded/xsdbin.cxx +@@ -334,7 +334,7 @@ main (int argc, char* argv[]) +     // +     string::size_type p (base.rfind ('/')), p1 (base.rfind ('\\')); +  +-    if (p1 != string::npos && p1 > p) ++    if (p1 != string::npos && (p == string::npos || p1 > p)) +       p = p1; +  +     if (p != string::npos) diff --git a/debian/patches/series b/debian/patches/series index 999f227..ca892aa 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@  0100-C++Parser_Expat_support.patch  0001-xsd_xsdcxx-rename.patch  0700_hurd_PATH_MAX.patch +0105-Fix_path_handling_bug.patch | 
