-rw-r--r-- | noncore/net/mail/libmailwrapper/abstractmail.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/net/mail/libmailwrapper/abstractmail.cpp b/noncore/net/mail/libmailwrapper/abstractmail.cpp index f40aac8..5a8ada6 100644 --- a/noncore/net/mail/libmailwrapper/abstractmail.cpp +++ b/noncore/net/mail/libmailwrapper/abstractmail.cpp | |||
@@ -85,12 +85,15 @@ encodedString* AbstractMail::decode_String(const encodedString*text,const QStrin | |||
85 | QString AbstractMail::convert_String(const char*text) | 85 | QString AbstractMail::convert_String(const char*text) |
86 | { | 86 | { |
87 | size_t index = 0; | 87 | size_t index = 0; |
88 | char*res = 0; | 88 | char*res = 0; |
89 | int err = MAILIMF_NO_ERROR; | 89 | int err = MAILIMF_NO_ERROR; |
90 | 90 | ||
91 | if (!text) { | ||
92 | return QString(""); | ||
93 | } | ||
91 | QString result(text); | 94 | QString result(text); |
92 | 95 | ||
93 | err = mailmime_encoded_phrase_parse("iso-8859-1", | 96 | err = mailmime_encoded_phrase_parse("iso-8859-1", |
94 | text, strlen(text),&index, "iso-8859-1",&res); | 97 | text, strlen(text),&index, "iso-8859-1",&res); |
95 | //odebug << "Input: " << text << "" << oendl; | 98 | //odebug << "Input: " << text << "" << oendl; |
96 | if (err == MAILIMF_NO_ERROR && res && strlen(res)) { | 99 | if (err == MAILIMF_NO_ERROR && res && strlen(res)) { |