| Summary: | unicode - wrong char at end of block | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Kurt Hindenburg <khindenburg> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
sh script to display incorrect output
Patch to fix this |
||
|
Description
Kurt Hindenburg
2006-08-06 06:28:38 UTC
Created attachment 17243 [details]
sh script to display incorrect output
Created attachment 17244 [details]
Patch to fix this
SVN commit 570191 by hindenburg:
Fix incorrect unicode char at end of block. Thanks Jonas Hurrelmann for
email and patch.
BUG:131938
M +1 -1 TEmulation.cpp
--- branches/KDE/3.5/kdebase/konsole/konsole/TEmulation.cpp #570190:570191
@@ -325,7 +325,7 @@
}
// Otherwise, bulk decode until the next control code
- for(l = i; l < len; ++l)
+ for(l = i; l < len-1; ++l)
if ((unsigned char) s[l] < 32)
break;
Not needed for KDE4 since this code is no longer used. |