https://bugzilla.redhat.com/show_bug.cgi?id=1657542
Peng Wu <pwu(a)redhat.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |pwu(a)redhat.com
Assignee|tagoh(a)redhat.com |pwu(a)redhat.com
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1634990
Miro Hrončok <mhroncok(a)redhat.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |CLOSED
Resolution|--- |RAWHIDE
Last Closed| |2019-01-17 11:21:31
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1647043
Richard Maciel Costa <rcosta(a)redhat.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Whiteboard|impact=low,public=20181028, |impact=low,public=20181028,
|reported=20181029,source=cv |reported=20181029,source=cv
|e,cvss3=4/CVSS:3.0/AV:L/AC: |e,cvss3=4/CVSS:3.0/AV:L/AC:
|L/PR:N/UI:N/S:U/C:N/I:N/A:L |L/PR:N/UI:N/S:U/C:N/I:N/A:L
|,cwe=CWE-416,cfme-5/gettext |,cwe=CWE-416,cfme-5/gettext
|=new,cfme-6/gettext=new,fed |=new,fedora-all/gettext=aff
|ora-all/gettext=affected,ep |ected,epel-7/mingw-gettext=
|el-7/mingw-gettext=affected |affected,fedora-all/mingw-g
|,fedora-all/mingw-gettext=a |ettext=affected,rhel-5/gett
|ffected,rhel-5/gettext=nota |ext=notaffected,rhel-6/gett
|ffected,rhel-6/gettext=nota |ext=notaffected,rhel-7/gett
|ffected,rhel-7/gettext=affe |ext=affected,rhel-8/gettext
|cted,rhel-8/gettext=affecte |=affected,rhel-8/mingw-gett
|d,rhel-8/mingw-gettext=affe |ext=affected,openshift-onli
|cted,openshift-online-3/get |ne-3/gettext=defer
|text=defer |
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1599870
--- Comment #3 from Marek Kašík <mkasik(a)redhat.com> ---
Thank you for the answer. I still can not reproduce the issue. Maybe it is font
related. Could you attach here list of fonts installed in your system (e.g.
"rpm -qa | grep fonts")?
It could be useful to see content of your "/etc/fonts/conf.d/" too ("ls
/etc/fonts/conf.d/").
What is your locale ("locale")?
Which version of freetype do you have?
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1470673
--- Comment #18 from fujiwara <tfujiwar(a)redhat.com> ---
(In reply to fujiwara from comment #12)
> Your problem is caused by /home/jfarias/.XCompose from your backtrace.
> Could you attach the file /home/jfarias/.XCompose ?
>
> #4 0x00007fd05e8c59de in parse_compose_value (compose_data=0x56507fa04460,
> compose_data=0x56507fa04460, line=0x56507fa15630 "<dead_diaeresis> <B> :
> \"\\\"B\"", val=0x56507fa1c5b0 "\"\\\"B\"") at ibuscomposetable.c:108
The original issue has that line of:
"<dead_diaeresis> <B> : "\"B"
Currently ibus and gtk supports to output only one char so if \" is appeared,
the next char needs to be " otherwise went to assert.
Replacing the assert with a warning also can fix the original issue.
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1470673
fujiwara <tfujiwar(a)redhat.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CLOSED |ASSIGNED
Resolution|INSUFFICIENT_DATA |---
Keywords| |Reopened
--- Comment #17 from fujiwara <tfujiwar(a)redhat.com> ---
(In reply to har0ke from comment #16)
> Created attachment 1518933 [details]
> The .XCompose file a fedora virtualbox generated by installiere_neo
Thank you. I could reproduce your issue.
I remembered I added the assert for the case I was not sure about to happen
really.
Actually your .XCompose has two same sequences:
% grep '<slash> <slash>' .XCompose
<Multi_key> <slash> <slash> : "\\" backslash # REVERSE SOLIDUS
<Multi_key> <slash> <slash> : "\" backslash
The first line is correct but the second line is invalid and I added the assert
for the wrong syntax.
If you modify your .XCompose, ibus will works fine.
% diff .XCompose.orig .XCompose
6194,6196c6194,6196
< <Multi_key> <slash> <slash> : "\" backslash
< <Multi_key> <slash> <less> : "\" backslash
< <Multi_key> <less> <slash> : "\" backslash
---
> #<Multi_key> <slash> <slash> : "\" backslash
> #<Multi_key> <slash> <less> : "\" backslash
> #<Multi_key> <less> <slash> : "\" backslash
% rm .cache/ibus/compose/*
% ibus exit
% ibus-daemon --xim --verbose &
I will replace the assert with a warning message not to terminate ibus.
--
You are receiving this mail because:
You are on the CC list for the bug.