uriparser.patch 570 B

12345678910111213
  1. diff --git a/dom/src/dae/daeURI.cpp b/dom/src/dae/daeURI.cpp
  2. index 3a8f815..1623753 100644
  3. --- a/dom/src/dae/daeURI.cpp
  4. +++ b/dom/src/dae/daeURI.cpp
  5. @@ -790,7 +790,7 @@
  6. scheme = fromRange(uri.scheme);
  7. authority = fromRange(uri.hostText);
  8. path = fromList(uri.pathHead, "/");
  9. - if (uri.absolutePath != URI_TRUE and uri.hostText.first == NULL)
  10. + if (uri.absolutePath != URI_TRUE && uri.hostText.first == NULL)
  11. path = path.erase(0, 1);
  12. query = fromRange(uri.query);
  13. fragment = fromRange(uri.fragment);