<div dir="ltr">Hey,<br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 25, 2016 at 4:54 PM, Stephan Bergmann <span dir="ltr"><<a href="mailto:sbergman@redhat.com" target="_blank">sbergman@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 05/24/2016 02:34 AM, Markus Mohrhard wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
commit 8857877aa609de4c8476330c34a24906f5fdc05b<br>
Author: Markus Mohrhard <<a href="mailto:markus.mohrhard@googlemail.com" target="_blank">markus.mohrhard@googlemail.com</a>><br>
Date:   Mon May 23 23:47:17 2016 +0200<br>
<br>
    return paths and not URLs<br>
<br>
    Change-Id: I03553a1fe98ac7ac780333b2ec247ed0cd781ffb<br>
    Reviewed-on: <a href="https://gerrit.libreoffice.org/25379" rel="noreferrer" target="_blank">https://gerrit.libreoffice.org/25379</a><br>
    Reviewed-by: Markus Mohrhard <<a href="mailto:markus.mohrhard@googlemail.com" target="_blank">markus.mohrhard@googlemail.com</a>><br>
    Tested-by: Markus Mohrhard <<a href="mailto:markus.mohrhard@googlemail.com" target="_blank">markus.mohrhard@googlemail.com</a>><br>
<br>
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx<br>
index f1b0828..4f1836d 100644<br>
--- a/desktop/source/app/crashreport.cxx<br>
+++ b/desktop/source/app/crashreport.cxx<br>
@@ -61,7 +61,11 @@ OUString getCrashUserProfileDirectory()<br>
     rtl::Bootstrap::expandMacros(url);<br>
     osl::Directory::create(url);<br>
<br>
-    return url;<br>
++#if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID<br>
++    return url.copy(7);<br>
++#elif defined WNT<br>
++    return url.copy(8);<br>
++#endif<br>
</blockquote>
<br>
Any reason to not use e.g. osl::FileBase::getSystemPathFromFileURL here?  A file URL is not a pathname with "file://" prepended.<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
 }<br>
<br>
 }<br>
</blockquote>
<br>
</blockquote></div><br></div><div class="gmail_extra">The code was originally part of a code path where I did not want to call any LibreOffice functions. Now for the last days it was just missing time to do it properly. I'm currently cleaning the code around the crash report and that will be part of it.<br><br></div><div class="gmail_extra">Regards,<br></div><div class="gmail_extra">Markus<br></div></div>