File 17-vmime-avoid-unneeded-conversion.diff of Package libvmime_zarafa7
--- a/src/word.cpp 2015-01-15 11:16:52.274064206 +0100 +++ b/src/word.cpp 2015-01-15 11:58:12.570143004 +0100 @@ -723,6 +723,10 @@ const string word::getConvertedText(const charset& dest) const { + if (dest == m_charset) { + return m_buffer; // no conversion needed + } + string out; try {