Georg Baum wrote:
I'll commit an updated one tonight.
Hum, did you try the patch?
It crashes for me on startup, this patch corrects it. Committing now.
A bdel.
Index: unicode.C
===================================================================
--- unicode.C (revision 14861)
+++ unicode.C (working copy)
@@ -31,6 +31,9 @@
iconv_convert(std::string const & tocode, std::string const & fromcode,
std::vector<char> const & buf)
{
+ if (buf.empty())
+ return std::vector<char>();
+
iconv_t cd = iconv_open(tocode.c_str(), fromcode.c_str());
if (cd == (iconv_t)(-1)) {
lyxerr << "Error returned from iconv_open" << endl;