You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On armv7l, char type is actually unsigned. So doing a switch on an unsigned value kindIndex with a negative case value actually does not work. My suggestion is to fix the type of kindIndex specifically to signed char. All unit tests pass if I make that change as well.
The text was updated successfully, but these errors were encountered:
wbkang
added a commit
to wbkang/ctags
that referenced
this issue
May 30, 2017
Hello,
I was excited to try out your project on my Raspberry Pi but ctags died with a segfault. After running it through gdb, I found the root cause:
On armv7l, char type is actually unsigned. So doing a switch on an unsigned value
kindIndex
with a negative case value actually does not work. My suggestion is to fix the type ofkindIndex
specifically tosigned char
. All unit tests pass if I make that change as well.The text was updated successfully, but these errors were encountered: