From 8ef5f33241db5e717daf6732d4db881918b0a46b Mon Sep 17 00:00:00 2001 From: alwin Date: Thu, 11 Mar 2004 15:57:38 +0000 Subject: workaround of a libetpan bug :( --- (limited to 'noncore') diff --git a/noncore/net/mail/libmailwrapper/abstractmail.cpp b/noncore/net/mail/libmailwrapper/abstractmail.cpp index d71d35c..ac6f380 100644 --- a/noncore/net/mail/libmailwrapper/abstractmail.cpp +++ b/noncore/net/mail/libmailwrapper/abstractmail.cpp @@ -83,20 +83,20 @@ QString AbstractMail::convert_String(const char*text) { size_t index = 0; char*res = 0; + int err = MAILIMF_NO_ERROR; - /* attention - doesn't work with arm systems! */ - int err = mailmime_encoded_phrase_parse("iso-8859-1", - text, strlen(text),&index, "iso-8859-1",&res); - if (err != MAILIMF_NO_ERROR) { - if (res) free(res); - return QString(text); - } - if (res) { - QString result(res); - free(res); - return result; + QString result(text); + + /* due a bug in libetpan it isn't usable this moment */ +/* int err = mailmime_encoded_phrase_parse("iso-8859-1", + text, strlen(text),&index, "iso-8859-1",&res);*/ + //qDebug("Input: %s",text); + if (err == MAILIMF_NO_ERROR && res && strlen(res)) { +// result = QString(res); +// qDebug("Res: %s, length: %i",res,strlen(res)); } - return QString(text); + if (res) free(res); + return result; } /* cp & paste from launcher */ -- cgit v0.9.0.2