https://bugs.freedesktop.org/show_bug.cgi?id=40607

--- Comment #25 from Michael Meeks <michael.me...@novell.com> 2012-01-24 
08:32:40 PST ---
A really useful trace - thanks for that ! :-) it seems that a load of these are
related to the flurry of /tmp files that we create (apparently for no really
good reason).

Re-running with:

diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx
index aa6cc26..6b3c56c 100644
--- a/sal/osl/unx/file.cxx
+++ b/sal/osl/unx/file.cxx
@@ -1064,6 +1064,9 @@ SAL_CALL osl_closeFile( oslFileHandle Handle )
 {
     FileHandle_Impl* pImpl = static_cast<FileHandle_Impl*>(Handle);

+    fprintf (stderr, "Close on '%s'\n", pImpl && pImpl->m_strFilePath ?
+             pImpl->m_strFilePath->buffer : "<null>");
+
     if (pImpl == 0)
         return osl_File_E_INVAL;


Might show us which one is actually the file you saved as :-) interesting too
to see the backup stuff there. It was great to see the osl_copyFile method
being used too - there is a comment in the impl. saying it isn't used ;-)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to