fa09cd
diff -up aspell-0.60.6/common/convert.cpp.zero aspell-0.60.6/common/convert.cpp
fa09cd
--- aspell-0.60.6/common/convert.cpp.zero	2007-12-03 07:55:45.000000000 +0100
fa09cd
+++ aspell-0.60.6/common/convert.cpp	2008-09-01 12:04:39.000000000 +0200
fa09cd
@@ -813,6 +813,7 @@ namespace acommon {
fa09cd
   {
fa09cd
     ToUniLookup lookup;
fa09cd
     void decode(const char * in, int size, FilterCharVector & out) const {
fa09cd
+      if (size == 0) return; // if size == 0 then while loop cause SIGSEGV
fa09cd
       const char * stop = in + size; // this is OK even if size == -1
fa09cd
       while (*in && in != stop) {
fa09cd
         out.append(from_utf8(in, stop));