| Summary: | incorrect set prefCharset in decodeRFC2047String | ||
|---|---|---|---|
| Product: | [Unmaintained] kmail | Reporter: | Artyom Mirgorodsky <man> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | FreeBSD | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
SVN commit 753090 by winterz: fix check for us-ascii in decodeRFC2047String BUG: 154635 M +11 -12 kmmsgbase.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=753090 |
Version: (using KDE Devel) Installed from: Compiled sources OS: FreeBSD 410c410 < if ( kasciistricmp( prefCharset.data(), "us-ascii" ) ) { --- > if ( kasciistricmp( prefCharset.data(), "us-ascii" ) == 0) { charsetName = "utf-8"; } else { charsetName = prefCharset; }