[Libreoffice-commits] core.git: filter/source
Julien Nabet
serval2412 at yahoo.fr
Sat Apr 14 10:17:24 UTC 2018
filter/source/graphicfilter/icgm/cgm.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 5bf410957994ec2acfec1fddb822934ed0965820
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sat Apr 14 11:08:11 2018 +0200
Related tdf#116999: log the exception (filter/icgm)
and avoid possible long gdb session to find the root cause
Change-Id: If455cf1d727a05a36eccca48d96272c77a6e78a7
Reviewed-on: https://gerrit.libreoffice.org/52867
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/filter/source/graphicfilter/icgm/cgm.cxx b/filter/source/graphicfilter/icgm/cgm.cxx
index 3da966412c77..f3c1ee5d7f72 100644
--- a/filter/source/graphicfilter/icgm/cgm.cxx
+++ b/filter/source/graphicfilter/icgm/cgm.cxx
@@ -730,8 +730,9 @@ ImportCGM(SvStream& rIn, uno::Reference< frame::XModel > const & rXModel, css::u
aXStatInd->end();
}
}
- catch (const css::uno::Exception&)
+ catch (const css::uno::Exception& exc)
{
+ SAL_WARN("filter.icgm", exc);
nStatus = 0;
}
}
More information about the Libreoffice-commits
mailing list