Kaydet (Commit) 5c47e5f6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

fdo#51252 Disable copying share/prereg/bundled to avoid startup crashes

...see <https://bugs.freedesktop.org/show_bug.cgi?id=51252#c35>, comment 35 to
"LO cannot start (reports runtime error with Visual C++ Runtime Library)" for
all the details.  This commit is intended as a band aid, to be backported to
libreoffice-3-6-0.  It can be cleaned up later on.

Change-Id: I2984cdd7efc279e3ef482a762b614e1d625a697f
üst a572af02
...@@ -649,7 +649,7 @@ void Desktop::Init() ...@@ -649,7 +649,7 @@ void Desktop::Init()
// copy bundled folder to the user directory // copy bundled folder to the user directory
osl::FileBase::RC rc = osl::Directory::createPath(aUserPath); osl::FileBase::RC rc = osl::Directory::createPath(aUserPath);
(void) rc; (void) rc;
copy_bundled_recursive( aPreregBundledPath, aUserPath, +1 ); if (false) copy_bundled_recursive( aPreregBundledPath, aUserPath, +1 );
} }
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment