GNOME Bugzilla – Bug 318269
Script-Fu.exe crash in Win XP SP2
Last modified: 2008-01-15 14:04:41 UTC
Distribution/Version: XP SP2 In platform Windows XP SP2 GIMP2.3.4 & GTK+2.8.4, Script-Fu crashes at the time of starting. This phenomenon is the same also in GIMP2.2.8 & GTK+2.6.9.
It is a characteristic phenomenon in a Japanese version.
And a well-known one also since this is most likely a duplicate of bug #163212. *** This bug has been marked as a duplicate of 163212 ***
gimp-2.2.8/plug-ins/script-fu/siod/slib.c 1131 to 1135 cname = name; while ((c = *cname++)) hash = ((hash * 17) ^ c) % n; sl = obarray[hash]; } bug fix cname = name; while ((c = *cname++)) hash = ((hash * 17) ^ c) % n; if (hash < 0) hash = -hash; sl = obarray[hash]; } c < 0 It may not operate.