mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 14:15:32 +00:00
- Fix crash on closing a document where for instance the PDF is still open (temp directory can not be removed when another program has an open file there)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15391 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9e8d9ad176
commit
2a887391ff
@ -390,7 +390,12 @@ string const createTmpDir(string const & tempdir, string const & mask)
|
||||
|
||||
bool destroyDir(string const & tmpdir)
|
||||
{
|
||||
return fs::remove_all(tmpdir) > 0;
|
||||
try {
|
||||
return fs::remove_all(tmpdir) > 0;
|
||||
} catch (fs::filesystem_error const & fe){
|
||||
lyxerr << "Could not delete " << tmpdir << ". (" << fe.what() << ")" << std::endl;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user